Docs / Language Manual / LazyValues

Lazy Values

A lazy value represents a deferred computation which will automatically memoize the result on the first run, and then return the memoized result on any repeated execution.

This is useful for defining functions and expressions for complex procedures that always return the same value, for example:

  • Doing expensive DOM traversals over the same tree over and over again

  • Doing file system operations on a static set of files that won't change

  • Doing expensive requests to an API server that would always return the same data

A lazy value has a type of Lazy.t('a), where 'a is the return value of the computation. All its functionality is encapsulated with the globally available Lazy module.

Creating a lazy value

Lazy values are part of the language. You can either use the lazy keyword to create a lazy value from an expression...

RE
// We only want getFiles to read the file system once, // so we wrap it in a lazy value let getFiles = lazy({ Js.log("Reading dir"); Node.Fs.readdirSync("./pages"); }); // On the first call, the computation takes place Lazy.force(getFiles)->Js.log; // The second call will just return the already calculated files Lazy.force(getFiles)->Js.log;

... or you can also wrap an existing function to make it lazy:

RE
// Example for wrapping a function with 0 parameters let getFiles = () => { Node.Fs.readdirSync("./pages"); }; // Here we wrap our function in the lazy value let lazyGetFiles = Lazy.from_fun(getFiles);
RE
// Example for wrapping a function with parameters let doesFileExist = name => { Node.Fs.readdirSync("./pages")->Js.Array.find(s => name === s, _); }; // Here we use the lazy syntax again // since we can't use Lazy.from_fun let lazyDoesFileExist = lazy(doesFileExist("blog.re"));

Whenever we want to wrap a function unit => 'a, we use Lazy.from_fun, otherwise we use the lazy([expr]) keyword to wrap an expression or a function with 1 or more arguments.

Force a lazy computation

Lazy values need to be explicitly executed to be able to return a value. Use the Lazy.forceto start the execution:

RE
let computation = lazy(1); // Returns 1 Lazy.force(computation);

It is also possible to use pattern matching to force a lazy value to compute, this includes switch expressions and similar syntax such as tuple destructuring:

RE
//------------------------------------------ // Extract a lazy value via pattern matching //------------------------------------------ let computation = lazy("computed"); switch(computation) { | lazy("computed") => Js.log("ok") | _ => Js.log("not ok") }; //------------------------------ // Destructuring a single value //------------------------------ // Note: currently refmt will reprint this // as `let lazy word = ...` let lazy(word) = lazy("hello"); // Output: "hello" Js.log(word); //------------------------------ // Destructing a tuple //------------------------------ let lazyValues = (lazy("hello"), lazy("world")); let (lazy(word1), lazy(word2)) = lazyValues; // Output: "hello world" Js.log2(word1, word2);

As you can see, the lazy syntax is a really great way for creating and handling lazy computations!

Exception handling

Whenever a lazy value computation raises an exception, the same exception will be thrown by Lazy.force.

RE
exception NoFile; let readFile = lazy( { raise(NoFile); } ); try(Lazy.force(readFile)) { | NoFile => Js.log("No file") };

Nothing new here, since we are using the try expression to match the exception raised in the lazy computation!

Please remember: Exceptions should be used sparsely!

Notes

A lazy value is a non-shared data type. Don't rely on the runtime representation on the JS side.