New issue 78 by marin...@gmail.com: make Identifier.getWmes() return an
iterable
http://code.google.com/p/jsoar/issues/detail?id=78
Especially for handling output, I want to be able to do something like this:
for(Wme w : myid.getWmes())
But getWmes returns an Iterator, not an Iterable. An Iterable would be
nice. I guess we can't change this actual method without breaking
compatibility, but I argue that we shouldn't care, since anyone who
actually needs an iterator can get it from the Iterable (i.e., they would
just change their code to myId.getWmes().iterator()).