I have an Item which has a method List<Item> getChildren() (which returns an immutable list) and for each of the items I have, I need to create a list of the item followed by its children.
What's the quickest way to "cons" (in the Lisp/Scheme sense) my item to create a new immutable list? I can certainly do the following, but it seems wrong/wasteful:
public List<Item> getItemAndItsChildren(Item item)
{
if (item.getChildren.isEmpty())
return Collections.singletonList(item);
else
{
// would rather just "return cons(item, item.getChildren())"
// than do the following -- which, although straightforward,
// seems wrong/wasteful.
List<Item> items = new ArrayList<Item>();
items.add(item);
items.addAll(item.getChildren());
return Collections.unmodifiableList(items);
}
}
consmethods in the Java Collections framework (that I know of, and I just checked as well), however you could write a method called cons that performs this, so you don't have to write the ugly implementation everywhere. You could also 'skip' a line of code:items.add(item);, as you can call theArrayListconstructor that takes aCollection. – ty1824 Aug 15 '11 at 20:04consis it really a requirement to adhere to theListinterface, or could that requirement be relaxed?Listhas some baggage with allowing random-access, reverse iteration, etc. – Mark Peters Aug 15 '11 at 20:54