Closed GoogleCodeExporter closed 9 years ago
Thanks for suggesting this.
However, I don't see the advantage of this over the standard Map.entrySet()
iterator.
Original comment by jared.l....@gmail.com
on 12 May 2008 at 12:59
The advantage is in the syntax:
for (String[] s : arrayIterable(map))
System.out.println(s[0] +" "+ s[1]);
versus
for (Map.Entry<String, String> s : map.entrySet())
System.out.println(s.getKey + " " + s.getValue());
Original comment by robbie.v...@gmail.com
on 12 May 2008 at 9:37
@Robbie
This may be of interest:
http://docs.google.com/View?docid=dfn5297z_14dwzrkpgw
Original comment by gk5...@gmail.com
on 12 May 2008 at 3:05
Original issue reported on code.google.com by
robbie.v...@gmail.com
on 12 May 2008 at 12:11