I cannot find a method cons. Such a method would add a single item to an Iterable. Instead, do I have to use
Iterables.concat(list, Collections.singletonList(item))
? The following would be quite nice.
Iterables.cons(list, item)
|
I cannot find a method cons. Such a method would add a single item to an Iterable. Instead, do I have to use
? The following would be quite nice.
|
||||
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
So, write a method |
|||
|
|
consfunction in the Lisp sense would add the single item in front, not at the end. – PaĆlo Ebermann Apr 25 '11 at 19:06list.add(item)? – Ray Apr 26 '11 at 11:47list.add(0, item). Perhaps off-topic, but if it's not aList, why call it that? – Ray Apr 26 '11 at 11:49