Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Hamming Sequences and Lazy Lists

by tlm (Prior)
on Mar 17, 2005 at 23:06 UTC ( [id://440579]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    ll_new( $x, < any perl expression > )
    
  2. or download this
    ll_new( $x, memoize( sub { < any perl expression > } ) )
    
  3. or download this
    ll_new( $x, sub { < any perl expression > } )
    
  4. or download this
    $fibs = ll_new(
      0,
    ...
        }
      )
    );
    
  5. or download this
    
    $fibs = ll_new( 0, ll_new( 1, ll_add( tail( $fibs ), $fibs ) ) );
    
  6. or download this
    fibs = 0:1:[a+b| (a,b) <- zip fibs (tail fibs) ]
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://440579]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (4)
As of 2024-04-25 12:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found