Lazy sequences are sequences that are constructed as their members are accessed.

learn more… | top users | synonyms

4
votes
2answers
70 views

Get element from sequence in clojure

I understand that lists and vectors in Clojure can be used almost interchangeably in most situations. Here is a simple case that surprised me (nth [2 4] 0) ;=> 2 (nth '(2 4) 0) ;=> 2 (get [2 ...
3
votes
1answer
61 views

Lazy sequence generation in Rust

In Rust, how can I create what other languages call a lazy sequence or a "generator" function (in Python)? For example in Python, I can use yield as in the following example (from Python's docs) to ...
2
votes
1answer
77 views

How to use LazySeq correctly

There are a dozen of confusion when I use lazySeq. Question: (def fib (lazy-seq (concat [0 1] (map + fib (rest fib))))) ;; It's Ok (take 10 fib) ;; Bomb Got the error message: ...
3
votes
2answers
69 views

Clojure: Idiomatic way to call contains? on a lazy sequence

Is there an idiomatic way of determining if a LazySeq contains an element? As of Clojure 1.5 calling contains? throws an IllegalArgumentException: IllegalArgumentException contains? not supported on ...
4
votes
2answers
144 views

How to improve text processing performance in Clojure?

I'm writing a simple desktop search engine in Clojure as a way to learn more about the language. Until now, the performance during the text processing phase of my program is really bad. During the ...
4
votes
2answers
105 views

Create lazy IO list from a non-IO list

I have a lazy list of filenames created by find. I'd like to be able to load the metadata of these files lazily too. That means, that if i take 10 elements from metadata, it should only search the ...
1
vote
2answers
130 views

Lazy list s-expression matrix in smalltalk

So I have a class to create in smalltalk called LazyMatrix. The class only has 1 instance variable and cannot be a subclass of anything but Object. The instance variable of LazyMatrix is called block ...
0
votes
5answers
101 views

Clojure 2d list to hash-map

I have an infinite list like that: ((1 1)(3 9)(5 17)...) I would like to make a hash map out of it: {:1 1 :3 9 :5 17 ...) Basically 1st element of the 'inner' list would be a keyword, while second ...
2
votes
1answer
114 views

Why is line-seq returning clojure.lang.Cons instead of clojure.lang.LazySeq?

According to the ClojureDocs entry for line-seq (http://clojuredocs.org/clojure_core/clojure.core/line-seq) and the accepted answer for the Stack question (In Clojure 1.3, How to read and write a ...
1
vote
1answer
76 views

Recursion in a stream

I have the code (define (add-ten s) (let ([f (lambda(s) ((cons 10 (car (s))) (cdr (s))))]) (f s))) s could be a stream like powers (define powers (letrec ([f (lambda (x) (cons x (lambda () (f (* ...
3
votes
3answers
44 views

Alternate two values

I have the code (define alternate (letrec ([f (lambda (x) (cons x (lambda () (f (+ x 1)))))]) (lambda () (f 1)))) The result is 1,2,3.. How i could change it to take 1,2,1,2,1,2.. I tried cons ...
3
votes
2answers
129 views

Streams in Scheme - define integers through stream map in scheme

How can I define integers through stream-map in Scheme: (define integers (stream-cons 1 (stream-map *something* *something*))
1
vote
1answer
38 views

Combining LazySeqs into one collection of maps

I'm trying to combine a couple of LazySeqs into one collection of maps. ("a" "b" "c" ...) ("x" "y" "z" ...) into ({:key1 "a" :key2 "x"} {:key1 "b" :key2 "y"} ...) It is guaranteed that the ...
1
vote
1answer
316 views

efficient sieve of Euler in stream processing style

Sieve of euler has a better asymptotic complexity than Sieve of Eratosthenes, and can be implemented simply in Imperative languages. I'm wondering wether there is any way to implement it elegantly ...
7
votes
1answer
130 views

double stream feed to prevent unneeded memoization?

I'm new to Haskell and I'm tring to implement sieve of euler in stream processing style. When I check the haskell wiki about prime numbers,I found some mysterious optimization technique for streams. ...
2
votes
2answers
106 views

Type variance error in Scala when doing a foldLeft over Traversable views

I am trying concatenate a series of Traversable views in Scala using a foldLeft operator and am hitting type variance errors that I don't understand. I can use reduce to concatenate a list of ...
5
votes
3answers
129 views

Realization timing of lazy sequence

(defn square [x] (do (println (str "Processing: " x)) (* x x))) (println (map square '(1 2 3 4 5))) Why is the output (Processing: 1 Processing: 2 1 Processing: 3 4 Processing: 4 9 ...
7
votes
1answer
117 views

Understanding the execution of a lazy fibonacci implementation in Clojure

I'm trying to understand the execution of the following code: (def fibs (concat (lazy-seq [0 1]) (lazy-seq (map + fibs (rest fibs))))) This is what I would expect the execution to look like [0 ...
4
votes
2answers
98 views

stop and split generated sequence at repeats - clojure

I am trying to make a sequence that will only generate values until it finds the following conditions and return the listed results: case head = 0 - return {:origin [all generated except 0] ...
5
votes
2answers
142 views

Can I read n files lazily as a single IO operation in Haskell?

How can I read multiple files as a single ByteString lazily with constant memory? readFiles :: [FilePath] -> IO ByteString I currently have the following implementation but from what I have ...
11
votes
2answers
191 views

lazy version of mapM

Suppose, I'm getting large list of items while working with IO: as <- getLargeList Now, I'm trying to apply fn :: a -> IO b onto as: as <- getLargeList bs <- mapM fn as mapM has type ...
6
votes
6answers
210 views

how to do Seq.takeWhile + one item in F#

I would like to write a function which filters a sequence using a predicate but the result should also INCLUDE the first item for which the predicate returns false. The logic would be something like ...
8
votes
3answers
311 views

In Clojure, are lazy seqs always chunked?

I was under the impression that the lazy seqs were always chunked. => (take 1 (map #(do (print \.) %) (range))) (................................0) As expected 32 dots are printed because the ...
3
votes
1answer
101 views

How can I create a lazy-seq vector

Running this works as expected: (defn long-seq [n] (lazy-seq (cons (list n {:somekey (* n 2)}) (long-seq (+ n 1))))) (take 3 (long-seq 3)) ; => ((3 {:somekey 6}) (4 ...
2
votes
3answers
247 views

Join multiple lazy sequences of strings in Clojure

I have several strings: (def a "some random string") (def b "this is a text") Now i want to concatenate parts of them to create a string "some text". Unfortunately both of the strings below didn't ...
2
votes
1answer
192 views

doseq over a simple lazy seq runs out of heap space

When stress-testing some Clojure code at work, I noticed it runs out of heap space when iterating over large data-sets. I eventually managed to trace the issues back to the combination of Clojure's ...
2
votes
3answers
100 views

What's wrong with this clojure prime seq?

I can't figure out why this definition of a lazy primes sequence would cause non-termination. The stack-trace I get isn't very helpful (my one complaint about clojure is obtuse stack-traces). ...
0
votes
2answers
114 views

Is there a Python library for handling complicated mathematical sets (constructed using mathematical set-builder notation)?

I often work with multidimensional arrays whose array indices are generated from a complicated user-specified set. I'm looking for a library with classes for representing complicated sets with an ...
5
votes
3answers
129 views

Clever streams-based python program doesn't run into infinite recursion

I was playing around with clever ways to create a python generator for sequence A003602 This appears to work, but I can't figure out why. It seems to me like it should hit infinite recursion. Is ...
5
votes
1answer
137 views

Lazyness and stackoverflow

I wrote the following: (fn r [f xs] (lazy-seq (if (empty? xs) '() (cons (f (first xs)) (r f (rest xs)))))) to solve 4clojure.com's problem #118: http://www.4clojure.com/problem/118 ...
3
votes
4answers
133 views

When are the different elements of a lazy sequence realized in clojure?

I'm trying to understand when clojure's lazy sequences are lazy, and when the work happens, and how I can influence those things. user=> (def lz-seq (map #(do (println "fn call!") (identity %)) ...
3
votes
2answers
174 views

Non-linear slowdown creating a lazy seq in Clojure

I implemented a function that returns the n-grams of a given input collection as a lazy seq. (defn gen-ngrams [n coll] (if (>= (count coll) n) (lazy-seq (cons (take n coll) (gen-ngrams n ...
0
votes
1answer
61 views

Sudden slowdown with lazy sequence

I had this code: :history (cons [t (:latest thing)] (take n (:history thing)) ) which was for adding a rolling window of recent history to a map on each iteration of my program. What I found was ...
4
votes
2answers
110 views

See if part of data is lazy in clojure

Is there a function in clojure that checks whether data contains some lazy part? Background: I'm building a small server in clojure. Each connection has a state, an input-stream and an output-stream ...
1
vote
1answer
1k views

Do something infinitely many times with an index

In more ruby way of doing project euler #2 , part of the code is while((v = fib(i)) < 4_000_000) s+=v if v%2==0 i+=1 end Is there a way to change i += 1 into a more functional programming ...
1
vote
1answer
848 views

How to prevent Clojure exception: clojure.lang.LazySeq cannot be cast to clojure.lang.IFn

I am trying to pass the (lazy) sequence returned from a map operation to another map operation, so that I can look up elements in the first sequence. The code is parsing some football fixtures from a ...
1
vote
1answer
251 views

clojure storing vs. using a sequence in expression

Helo, In an effort to learn clojure, I have taken an interest in clojure.core functions that act on sequences. Recently, I noticed some odd behaviour and would like an explaination of the difference ...
12
votes
3answers
210 views

What is the difference between the Clojure function (nth [coll index]) and the composition (last (take index coll))

I'm trying to work through Stuart Halloway's book Programming Clojure. This whole functional stuff is very new to me. I understand how (defn fibo[] (map first (iterate (fn [[a b]] [b (+ a ...
7
votes
4answers
271 views

clojure rest and next related

I was following The Joy of Clojure and I am puzzled with these 2 statements (def very-lazy (-> (iterate #(do (print \.) (inc %)) 1) rest rest rest)) (def less-lazy (-> (iterate #(do (print \.) ...
2
votes
1answer
199 views

Is there a way to construct lazy sequences in Python?

There is a Django view that loads Member objects from the database with a certain filter. Now I need to change this logic to present a specific Member first, and let the rest follow in their natural ...
0
votes
2answers
108 views

Pairwise Sequence Processing to compare db tables

Consider the following Use case: I want to iterate through 2 db tables in parallel and find differences and gaps/missing records in either table. Assume that 1) pk of table is an Int ID field; 2) the ...
1
vote
3answers
263 views

Looking for critique of my Erlang program

I'm new to Erlang and pretty new to functional programming in general. I've been having a really good time with Erlang so far (even though Erlang's punctuation has had me trip up a few times ;)), ...
1
vote
2answers
667 views

SML Lazy sort of int list using streams

The question 1 Streams and lazy evaluation (40 points) We know that comparison sorting requires at least O(n log n) comparisons where were are sorting n elements. Let’s say we only need the ...
19
votes
6answers
1k views

What are some compelling use cases of infinite data structures?

Some languages (Haskell, Clojure, Scheme, etc.) have lazy evaluation. One of the "selling points" of lazy evaluation is infinite data structures. What is so great about that? What are some examples of ...
5
votes
3answers
293 views

Creating a compound iterator in F#

I'm implementing a checkers-like game, and I need a sequence that enumerates all legal moves for a given configuration. I've got the following function, directly translated from C#: seq { for y1 ...
4
votes
2answers
394 views

Clojure/Java: Most effective method for minimizing bandwidth consumption when performing complex operations on a stream of Amazon S3 data

I'm performing streaming reads of an object using BufferedReader. I need to do two things with this object: Pass it to a SuperCSV csv reader Obtain the raw lines and keep them in a (Clojure) lazy ...
8
votes
3answers
695 views

How do I avoid Clojure's chunking behavior for lazy seqs that I want to short circuit?

I have a long, lazy sequence that I want to reduce and test lazily. As soon as two sequential elements are not = (or some other predicate) to each other, I want to stop consuming the list, which is ...
8
votes
2answers
566 views

How to create a lazy-seq generating, anonymous recursive function in Clojure?

Edit: I discovered a partial answer to my own question in the process of writing this, but I think it can easily be improved upon so I will post it anyway. Maybe there's a better solution out there? ...
3
votes
4answers
387 views

Yielding until all needed values are yielded, is there way to make slice to become lazy

Is there way to stop yielding when generator did not finish values and all needed results have been read? I mean that generator is giving values without ever doing StopIteration. For example, this ...
4
votes
2answers
518 views

How do I write a predicate that checks if a value exists in an infinite seq?

I had an idea for a higher-order function today that I'm not sure how to write. I have several sparse, lazy infinite sequences, and I want to create an abstraction that lets me check to see if a given ...

1 2