#14568: prepend list to lazy_list
---------------------------+------------------------------------------------
   Reporter:  vdelecroix   |             Owner:  vdelecroix
       Type:  enhancement  |            Status:  new       
   Priority:  major        |         Milestone:  sage-5.10 
  Component:  misc         |          Keywords:  lazy list 
Work issues:               |   Report Upstream:  N/A       
  Reviewers:               |           Authors:  vdelecroix
  Merged in:               |      Dependencies:            
   Stopgaps:               |  
---------------------------+------------------------------------------------
 The patch allows to prepend a (finite) list to a (potentially infinite)
 infinite list:
 {{{
 sage: from sage.misc.lazy_list import lazy_list
 sage: from itertools import count
 sage: l = lazy_list(i**2 for i in count()); l
 lazy list [0, 1, 4, ...]
 sage: ['toto', 'bibi'] + l
 lazy list ['toto', 'bibi', 0, ...]
 }}}

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/14568>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

-- 
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-trac?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to