Tagged Questions

1
vote
2answers
43 views

Java, Google Collections Library; problem with AbstractIterator?

I am using the Google Collections library AbstractIterator to implement a generator. I ran across a problem while doing so; I've reduced it to a more basic type and reproduced the problem. This …
4
votes
8answers
363 views

Java: Get first item from a collection

If I have a collection, such as Collection<String> strs, how can I get the first item out? I could just call an Iterator, take its first next(), then throw the Iterator away. Is there a less …
2
votes
5answers
223 views

java iterator/iterable subinterface

I have an interface for a variety of classes, all of which should implement Iterator, so I have something like public interface A extends Iterable<A> { ...otherMethods()... } For the concrete …
3
votes
5answers
196 views

What is the Iterable interface used for?

I am a beginner and I cannot understand the real effect of the Iterable interface.
3
votes
1answer
166 views

Emulating membership-test in Python: delegating __contains__ to contained-object correctly

Hi, I am used to that Python allows some neat tricks to delegate functionality to other objects. One example is delegation to contained objects. But it seams, that I don't have luck, when I want to …
1
vote
0answers
165 views

What are powerful attributes of Python that you think most Python developers don’t know about? [closed]

Learning Python is a lot like learning to use vim in my opinion. There's so much to it that it's hard to learn it all very quickly. Sometimes, just like with vim, I see something new and add it to my …
2
votes
3answers
344 views

Length of generator output

Python provides a nice method for getting length of an eager iterable, len(x) that is. But I couldn't find anything similar for lazy iterables represented by generator comprehensions and functions. Of …
1
vote
2answers
322 views

haXe and arrays Dynamic type

Hi, I know it's unlikely but maybe there is someone who knows haXe language. I have a variable of Dynamic type and I know for sure one of it's fields, lets call it an 'a' actually is an array. But …
6
votes
6answers
900 views

Why aren’t Enumerations Iterable?

In Java 5 and above you have the foreach loop, which works magically on anything that implements Iterable: for (Object o : list) { doStuff(o); } However, Enumerable still does not implement …