Is there a way to shuffle iterable directly without converting it to list in JAVA?
Iterable<Object> all = Iterables.unmodifiableIterable(
Iterables.concat(boy_agents,girl_agents));
Collections.shuffle(all);
above shuffle() requires a list as input. I dont want to do a looping to create a list considering the computing speed.