curry   xtlang


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/libs/base/prelude.xtm

Implementation

(bind-func curry:[[[!r,!b]*,!a]*,[!r,!a,!b]*]* -> (lambda (r f) (t:closure-size? f 2))
  (lambda (f) (lambda (a) (lambda (b) (f a b)))))


Back to Index

Similar Entries