I want to write a function printAll(), which accepts only those elements that implement that implement Iterable so that I can iterate over them and print the elements. How do I do that?

link|improve this question

74% accept rate
feedback

1 Answer

up vote 7 down vote accepted

public static void printAll(final Iterable<?> toIterate).

link|improve this answer
I feel like an idiot. – kunj2aan Jul 11 '10 at 8:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.