Tagged Questions

1
vote
3answers
40 views

JQuery plugin for lazy-loading/lazy-evaluation?

Is there such jQuery plugin? More specific: I want to use some elegant and easy way to postpone some code execution until it's really needed (some event happens). And when this ev …
4
votes
2answers
97 views

Is it possible to match with decomposed sequences in F#?

I seem to remember an older version of F# allowing structural decomposition when matching sequences just like lists. Is there a way to use the list syntax while keeping the sequen …
7
votes
11answers
336 views

Implementing a “LazyProperty” class - is this a good idea ?

I often find myself writing a property that is evaluated lazily. Something like: if (backingField == null) backingField = SomeOperation(); return backingField; It is not much …
1
vote
1answer
109 views

Partitioning an Iterator in scala 2.7.5

It looks as though there is no partition method on an Iterator in scala 2.7.5 (there is in 2.8). I'd like to have a partition without losing the laziness of the Iterator, so the fo …
1
vote
2answers
105 views

Lazy stream for C# / .NET

Does anyone know of a lazy stream implementation in .net? IOW, I want a to create a method like this: public Stream MyMethod() { return new LazyStream(...whatever parameters.. …
2
votes
2answers
34 views

How to begin approach of creating a small lazily-evaluated language.

I'm trying to build a small language with similar syntax and grammatical structure to Java, with List Comprehension and Lambda Functions and such (already made). What I'm trying t …
1
vote
5answers
142 views

Python: Lazy String Decoding

I'm writing a parser, and there is LOTS of text to decode but most of my users will only care about a few fields from all the data. So I only want to do the decoding when a user ac …
2
votes
3answers
113 views

How to covert a lazy sequence to a non-lazy in Clojure

I tried the following in Clojure, expecting to have the class of a non-lazy sequence returned: (.getClass (doall (take 3 (repeatedly rand)))) However, this still returns clojure …
4
votes
1answer
394 views

padding binary-block lazy sequences

I have Clojure function that takes a sequence of numbers chops it into the appropriate number of bits and returns a lazy sequence of the chunks (lowest order bits first). It pads t …
0
votes
3answers
119 views

Haskell. Strict application $!

I execute the next code: (take 10) $! [1,2..] What is it ? I thought, ghc will yield a termination, beacause i say "evaluate [1,2..] force". But I got the result "[1,2,3,4,5,6, …
5
votes
4answers
241 views

Playing with infinity - Lazy arithmetics

Many modern programming languages allow us to handle potentially infinite lists and to perform certain operations on them. Example [Python]: EvenSquareNumbers = ( x * x for x in …
1
vote
3answers
78 views

XML serialisation won’t write out lazy-evaluated property

Following on from a previous question, I am having trouble combining the Lazy<T> generic that was suggested with my XML Serialization. Here is the functionality I am using f …
1
vote
3answers
106 views

When is lazy evaluation not useful?

Delay execution is almost always a boon. But then there are cases when it’s a problem and you resort to “fetch” (in Nhibernate) to eager fetch it. Do you know practical situati …
10
votes
3answers
294 views

How is debugging achieved in a lazy functional programming language?

I'd like to know how debugging is achieved in a lazy functional language. Can you use breakpoints, print statements and traditional techniques? Is this even a good idea? It is my u …
6
votes
4answers
223 views

(emulated) Macros in Haskell?

Hi. A person on Reddit has brought this code to my attention: main = do let ns = [print 1, print 2, print 3] sequence_ ns sequence_ $ reverse ns sequence_ $ tail ns ++ [h …

1 2 3 next
15 30 50 per page