Tagged Questions
The lazy-sequences tag has no wiki summary.
14
votes
5answers
719 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 ...
12
votes
3answers
133 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 ...
12
votes
3answers
626 views
How Are Lazy Sequences Implemented in Clojure?
I like Clojure. One thing that bothers me about the language is that I don't know how lazy sequences are implemented, or how they work.
I know that lazy sequences only evaluate the items in the ...
6
votes
4answers
153 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 \.) ...
6
votes
2answers
271 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?
...
6
votes
4answers
575 views
Iterator blocks in Clojure?
I am using clojure.contrib.sql to fetch some records from an SQLite database.
(defn read-all-foo []
(with-connection *db*
(with-query-results res ["select * from foo"]
(into [] res))))
...
5
votes
3answers
253 views
Lazy Sequences that “Look Ahead” for Project Euler Problem 14
I'm trying to solve Project Euler Problem 14 in a lazy way. Unfortunately, I may be trying to do the impossible: create a lazy sequence that is both lazy, yet also somehow 'looks ahead' for values it ...
4
votes
3answers
199 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
280 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 ...
4
votes
3answers
310 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 ...
4
votes
1answer
386 views
Clojure Lazy Sequences that are Vectors
I have noticed that lazy sequences in Clojure seem to be represented internally as linked lists (Or at least they are being treated as a sequence with only sequential access to elements). Even after ...
4
votes
2answers
228 views
how to unit test for laziness
I have a function that is supposed to take a lazy seq and return an unrealized lazy seq. Now I want to write a unit test (in test-is btw) to make sure that the result is an unrealized lazy sequence.
3
votes
4answers
261 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 ...
3
votes
2answers
346 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 ...
2
votes
1answer
98 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 ...
2
votes
2answers
82 views
Are there sequence-operator implementations in .NET 4.0?
With that I mean similar to the Linq join, group, distinct, etc. only working on sequences of values, not collections.
The difference between a sequence and a collection is that a sequence might be ...
2
votes
1answer
202 views
adding metadata to a lazy sequence
When I try to add metadata to an infinite lazy sequence in Clojure, I get a stack overflow, and if I take off the metadata, then it works just fine. Why does adding the with-meta macro break the lazy ...
1
vote
1answer
44 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 ...
1
vote
2answers
169 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 ;)), ...
0
votes
1answer
46 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 ...
0
votes
2answers
86 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 ...