foldl   xtlang


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/tests/core/algebraic_data_types.xtm

Implementation

(bind-func foldl:[!b,[!b,!b,!a]*,!b,ADList{!a}*]*
  (lambda (fn start lst)
    (ADCons$ lst (x xs)
              (foldl fn (fn start x) xs)
              start)))


Back to Index

Similar Entries