Tagged Questions
4
votes
2answers
76 views
Is the “condition” of a for loop called each time for Iterables?
Lets say I have the following code:
for (Object obj : Node.getIterable()) {
//Do something to object here
}
and Node.getIterable() returns an iterable. Does the getIterable() function get ...
2
votes
2answers
290 views
Python __iter__ and for loops
As I understand it, I can use the for loop construction on an object with a __iter__ method that returns an iterator. I have an object for which I implement the following __getattribute__ method:
...
1
vote
2answers
948 views
haXe and arrays Dynamic type
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 when ...