Chris Angelico wrote:
> On Fri, Nov 1, 2013 at 9:18 PM, Ulrich Goebel wrote:
>> That gives me the solution. What I have, is an iterator object comming as a
>> SQLite database cursor object. So I could minimize the underliying SELECT
>> and build index = list(cursor). Then with Your hints I get wh
On Fri, Nov 1, 2013 at 9:18 PM, Ulrich Goebel wrote:
> That gives me the solution. What I have, is an iterator object comming as a
> SQLite database cursor object. So I could minimize the underliying SELECT
> and build index = list(cursor). Then with Your hints I get what I want.
Looks good! If y
Hi
Am 31.10.2013 23:35, schrieb Terry Reedy:
On 10/31/2013 5:29 PM, Ulrich Goebel wrote:
I'm locking for an "iterator" type with not only the .next() method, but
with a .previous(), .first() and .last() method, so that I can through
it from the beginning or from the end, and in both directions
On Thu, Oct 31, 2013 at 2:29 PM, Ulrich Goebel wrote:
> Hallo,
>
> I'm locking for an "iterator" type with not only the .next() method, but
> with a .previous(), .first() and .last() method, so that I can through it
> from the beginning or from the end, and in both directions, even
> alternately
On 10/31/2013 5:29 PM, Ulrich Goebel wrote:
I'm locking for an "iterator" type with not only the .next() method, but
with a .previous(), .first() and .last() method, so that I can through
it from the beginning or from the end, and in both directions, even
alternately (for example two steps forwa
On 2013-10-31, Ulrich Goebel wrote:
> I'm locking for an "iterator" type with not only the .next() method, but
> with a .previous(), .first() and .last() method, so that I can through
> it from the beginning or from the end, and in both directions, even
> alternately (for example two steps forwa
Hallo,
I'm locking for an "iterator" type with not only the .next() method, but
with a .previous(), .first() and .last() method, so that I can through
it from the beginning or from the end, and in both directions, even
alternately (for example two steps forward, one backward, two steps
forwar