Skip to content

Commit

Permalink
Updated a reference to TRIVIAL-LAZY
Browse files Browse the repository at this point in the history
  • Loading branch information
dsorokin committed Dec 15, 2012
1 parent 0741c24 commit dda3a3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README
@@ -1,6 +1,6 @@
RECLET -- a recursive LET for Common Lisp

This is close to macro LETREC but different. RECLET recursively defines the variables, not functions. It uses a laziness and SYMBOL-MACROLET to create recursive bindings. To define whether the recursive definitions are thread-safe, set special variable LAZY:*MEMO-THREAD-SAFE* to true.
This is close to macro LETREC but different. RECLET recursively defines the variables, not functions. It uses a laziness and SYMBOL-MACROLET to create recursive bindings. To define whether the recursive definitions are thread-safe, set special variable TRIVIAL-LAZY:*MEMO-THREAD-SAFE* to true.

Example 1: Fibonacci Sequence (using Generic Sequences)

Expand Down
2 changes: 1 addition & 1 deletion reclet.lisp
Expand Up @@ -4,7 +4,7 @@
;;;; Licensed under MIT. See LICENSE for details.

(defpackage :reclet
(:use :cl :lazy)
(:use :cl :trivial-lazy)
(:export #:reclet))

(in-package :reclet)
Expand Down

0 comments on commit dda3a3c

Please sign in to comment.