Created
April 9, 2013 09:57
-
-
Save kana/5344530 to your computer and use it in GitHub Desktop.
Lazy evaluation in JavaScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function delay(expressionAsFunction) { | |
var result; | |
var isEvaluated = false; | |
return function () { | |
if (!isEvaluated) | |
result = expressionAsFunction(); | |
return result; | |
}; | |
} | |
function force(promise) { | |
return promise(); | |
} | |
function cons(car, cdr) { | |
return [car, cdr]; | |
} | |
function next(n) { | |
return cons(n, delay(function () {return next(n + 1);})); | |
} | |
function head(stream) { | |
return stream[0]; | |
} | |
function tail(stream) { | |
return force(stream[1]); | |
} | |
var stream = next(0); | |
console.log(stream); | |
console.log(head(tail(tail(stream)))); //==> 2 |
Except that you never set isEvaluated, so expressionAsFunction is called every time the promise is forced, not just the first time.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Wow, LISP is better readable :-)
But good example ;-)