Tagged Questions
The iterable tag has no wiki summary.
20
votes
9answers
26k 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 ...
15
votes
7answers
754 views
Why doesn't the String class in Java implement Iterable?
Many Java framework classes implement Iterable, however String does not. It makes sense to iterate over characters in a String, just as one can iterate over items in a regular array.
Is there a ...
15
votes
5answers
4k 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 ...
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 ...
8
votes
2answers
164 views
Why there is no getFirst(iterable) method?
Iterables present two methods for getLast
public static <T> T getLast(Iterable<T> iterable);
public static <T> T getLast(Iterable<T> iterable, @Nullable T defaultValue);
...
7
votes
2answers
169 views
Chart of IEnumerable LINQ equivalents in Scala?
I am looking for chart which shows equivalents in Scala of LINQ methods for IEnumerable:
First is head
Select is map
SingleOrDefault is ... (I don't know)
... and so on
Does anyone know anything ...
7
votes
1answer
271 views
Iterate over arbitrary-length tuple
I just started with Scala and ran into a problem:
Scala has the Types Tuple1, Tuple2, …, Tuple22. Scalaquery returns tuples when iterating over queries.
I have now a given class (ZK’s ...
7
votes
7answers
315 views
Python: how to add contents of iterable to set?
In Python, what is the "one [...] obvious way" to add all items of an iterable to an extant set?
6
votes
5answers
182 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 ...
6
votes
3answers
161 views
Why do so many methods use Collection rather than Iterable?
With C# I grew to love the IEnumerable<T> interface. There are a lot of cases where that's all you want to give out and take in. In addition it's useful in the .Net library. You have for example ...
6
votes
3answers
161 views
java: design pattern for paged results
So there's Iterable and Iterator and List. What do you use if you are trying to provide an interface to other Java code, in order to encapsulate functionality provided by a remote service that returns ...
6
votes
4answers
713 views
Is there an equivalent in Scala to Python's more general map function?
I know that Scala's Lists have a map implementation with signature (f: (A) => B):List[B] and a foreach implementation with signature (f: (A) => Unit):Unit but I'm looking for something that ...
6
votes
3answers
3k 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 ...
5
votes
2answers
136 views
Unittest's assertEqual and iterables - only check the contents
Is there a 'decent' way in unittest to check the equality of the contents of two iterable objects?
I am using a lot of tuples, lists and numpy arrays and I usually only want to test for the contents ...
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
2answers
463 views
Porting new Iterable{} code from Scala 2.7.7 to 2.8
I saw this thread:
http://stackoverflow.com/questions/1243794/what-are-the-biggest-differences-between-scala-2-8-and-scala-2-7
It seems to cover some changes, but the first compile problems I've hit ...
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
2answers
73 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 ...
4
votes
10answers
2k views
“Iterable<Element> cannot be cast to List<Element>” - Isn't `List` a type of `Iterable`?
I called a getElements method which returns Iterable<Element>.
I did this:
List<Element> elements = (List<Element>) getElements();
This generates the error:
...
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 ...
4
votes
4answers
397 views
Python: map in place
I was wondering if there is a way to run map on something. The way map works is it takes an iterable and applies a function to each item in that iterable producing a list. Is there a way to have map ...
4
votes
1answer
615 views
Scala: Exposing a JDBC ResultSet through a generator (iterable)
I've got a set of rows in a database, and I'd like to provide an interface to spin through them like this:
def findAll: Iterable[MyObject]
Where we don't require having all the instances in memory ...
4
votes
5answers
479 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
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
412 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 ...
3
votes
1answer
98 views
Creating a dictionary from two iterables and consuming both of them
Suppose I have two lists and I want to make a dictionary from them. Like:
>>> l = [1, 2, 3, 4, 5]
>>> x = ['a', 'b', 'c']
>>> dict(zip(l, x))
{1: 'a', 2: 'b', 3: 'c'}
...
3
votes
2answers
341 views
Django filter bool not iterable
I want to filter all Relation Objects where (relation= following relation in a virtual community) the date one has initiated the following is in the past, related to the moment now.
The following ...
3
votes
1answer
603 views
Emulating membership-test in Python: delegating __contains__ to contained-object correctly
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 ...
2
votes
2answers
122 views
Python: check if an object is NOT an “array-type”
I'm looking for a way to test if an object is not of a "list-ish" type, that is - not only that the object is not iterable (e.g. - you can also run iter on a string, or on a simple object that ...
2
votes
3answers
290 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
4answers
196 views
Scala type that is Iterable and has a length?
Writing Scala code, I regularly encounter cases where I have "processor" functions that operate iteratively on a collection of elements and also need to know the length of the collection.
On the ...
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
2answers
267 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:
...
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
1answer
52 views
How to Create a Method that only accepts elements that implement Iterable
I want to write a function printAll(), which accepts only those elements that implement that implement Iterable so that I can iterate over them and print the elements. How do I do that?
2
votes
2answers
201 views
Handle iterable and non-iterable seamlessly
Could you let me know how I can optimize the following code?
def f(y, list_or_elem):
if getattr(list_or_elem, '__iter__'):
y = max(y, *list_or_elem)
else:
y = max(y, list_or_elem)
2
votes
5answers
339 views
Redirect print in Python: val = print(arg) to output mixed iterable to file
So lets say I have an incredibly nested iterable of lists/dictionaries. I would like to print them to a file as easily as possible. Why can't I just redirect print to a file?
val = print(arg)
gets ...
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
3answers
351 views
ValueError: invalid literal for float() in Python
To all:
I have curious if someone can help me understand the error: ValueError: invalid literal for float(). I am getting this when I am passing a text file to a list then trying to convert this ...
1
vote
2answers
56 views
Chunking an iterable
I have a method to get a load of objects from a database, which returns an Iterable.
For now, I am loading a resultset from a database, building objects from it and populating a collection with those ...
1
vote
1answer
42 views
why does an iterable object have no length in Python?
I think I am constantly improving my previous question. Basically, I would need to chunk up a large text (csv) file to send pieces to a multiprocess.Pool. To do so, I think I need at iterable object ...
1
vote
4answers
61 views
To implement an iterable type or not?
When should one consider implementing Iterable<T> as opposed to having a collection as an instance field? What are the benefits/consequences?
1
vote
3answers
102 views
Python dictionary to sorted tuples, can this be done better?
I have an dictonary for my input with the following characteristics:
Each value will be either an integer, string or iterable (other than a string).
If the element is an iterable, each element in ...
1
vote
1answer
276 views
Generic class implementing Iterable
I want to have a generic class that implements Iterable (let's call it ImplIterable) of type T that implements an Iterable interface over some class (that isn't of the generic class type); for ...
1
vote
4answers
1k views
How to check if an object is iterable in python? [closed]
Possible Duplicate:
In python, how do I determine if a variable is Iterable?
How does one check if a Python object supports iteration, a.k.a an iterable object (see definition
Ideally I ...
1
vote
3answers
331 views
Check if all values of iterable are zero
Is there a good, succinct/built-in way to see if all the values in an iterable are zeros? Right now I am using all() with a little list comprehension, but (to me) it seems like there should be a more ...
1
vote
1answer
129 views
Expose __main__
is this legal in python?. Seems to work ...
Thanks
# with these lines you not need global variables anymore
if __name__ == '__main__':
import __main__ as main
else:
main = ...