Tagged Questions

12
votes
4answers
349 views

Why is there a method iterator() on java.util.Collection

Why is there the method iterator() defined on the interface java.util.Collection when it already extends java.util.Iterable which has this very method defined. I'm thinking some sort of backward ...
6
votes
5answers
179 views

Why are Iterable<E> and Iterator<E> in different packages?

Iterable<E> is in java.lang whereas Iterator<E> is in java.util. Is there a good reason for this or is this merely an artifact of bad design? It seems strange since the only thing that an ...
5
votes
4answers
210 views

Creating an O(1)-memory Iterable from an initial object and a function which generates the next object, in Scala

I want a convenient way to generate an Iterable, given a initial object and a function to produce the next object from the current one, that consumes O(1) memory (i.e., it doesn't cache old results; ...
5
votes
5answers
624 views

Java: why can't iterate over an iterator?

I read http://stackoverflow.com/questions/839178/why-is-javas-iterator-not-an-iterable and http://stackoverflow.com/questions/27240/why-arent-enumerations-iterable, but I still don't understand why ...
4
votes
5answers
363 views

Java: why does Collection.addAll can not accept Iterables?

I wonder why the Collection.addAll() method only accepts other Collections but not Iterables. Why is that? Any similar method to do that for Iterables?
4
votes
10answers
1k views

Java: why are iterators not copyable

I would think that Iterator.copy() would be quite a handy function. You could implement iterator filters in a much better way. For example, the only reason in Googles Java Collection for the filter ...
3
votes
2answers
194 views

java: concurrent iteration over an immutable Iterable

I have an immutable Iterable<X> with a large number of elements. (it happens to be a List<> but never mind that.) What I would like to do is start a few parallel / asynchronous tasks to ...
3
votes
3answers
411 views

Java Iterator and Iterable

I am trying to understand Java Iterator and Iterable interfaces I am writing this class class MyClass implements Iterable<String>{ public String[] a=null; public MyClass(String[] ...
3
votes
2answers
150 views

What's the shortest way to count the number of items in a generator/iterator?

If I want the number of items in an iterable without caring about the elements themselves, what would be the pythonic way to get that? Right now, I would define def ilen(it): return ...
2
votes
3answers
289 views

What is the difference between iterator and iterable and how to use them?

I am new in Java and I'm really confused with iterator and iterable. Can anyone explane to me and give some examples?
2
votes
3answers
139 views

Implementing the Iterable interface

I just found this exam question in an old exam paper and am readying myself for an upcoming exam. I cannot figure it out : The following depicts a contrived partial class which implements the ...
2
votes
3answers
347 views

Python filter / max combo - checking for empty iterator

(Using Python 3.1) I know this question has been asked many times for the general question of testing if iterator is empty; obviously, there's no neat solution to that (I guess for a reason - an ...
2
votes
4answers
879 views

LinkedList implementation in Java with generics and enhanced for

I need you to review my implementation of a Singly Linked List (SLL) please. The implementation should use generics and be able to use the enhanced for. The problem is that, when I do for (Number n ...
2
votes
5answers
1k 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 ...
1
vote
4answers
976 views

How to create an iterable wrapper for TreeMap and HashMap (Java)?

I have a class MyMap which wraps TreeMap. (Say it's a collection of dogs and that the keys are strings). public class MyMap { private TreeMap<String, Dog> map; ... } I would like to turn ...
1
vote
2answers
193 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 ...