-
Notifications
You must be signed in to change notification settings - Fork 169
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Joined(Iterable<? extends T> items, T item) #1619
Comments
@yegor256 to append it you can use something like: |
@0crat in |
I can pick this one up. Seems like a good first contribution. Do you all have contributor guidelines anywhere? Looks like there's a |
@william7b7d yep, you can make a PR and we will review it. qulice will be executed automatically. If you have doubts about what needs to be done, don't hesitate to ask here first! |
Okay got a PR together. Let me know if I missed anything. |
How about we introduce a new ctor
Joined(Iterable<? extends T> items, T item)
, which will add theitem
to the end of the list. Currently, the existing ctorJoined(T item, Iterable<? extends T> items)
prepends the list with a new item. I didn't manage to find how to append it.The text was updated successfully, but these errors were encountered: