diff --git a/index.html b/index.html index 8f3a99b..f3c1e7b 100644 --- a/index.html +++ b/index.html @@ -88,6 +88,34 @@

Comparison

+ + + +

+(map (lm (x) (+ 2 x)) '(1 2 3))
+(map ^(+ 2 %) '(1 2 3))
+                
+ + +

+(mapcar (lambda (x) (+ 2 x)) '(1 2 3))
+                
+ + + + + +

+(map #'- #(1 2 3 4))
+                
+ + +

+(map 'vector #'- #(1 2 3 4))
+                
+ + +

@@ -160,6 +188,10 @@ 

Comparison

+ +

Motivation