Kind/book/List.fold.kind2
Victor Taelin 85ad65b026 use-notation
Now, there are two local binders:

let x = ...
use x = ...

The 'let' binder will create a local definition, type-check it, and
assign a name to it. When compiled, it will create 'dup' nodes.

The 'use' binder is just an alias. It will not bind a new variable, and,
when compiled, will create inline copies. Also, for type-checking, it
allows creating aliases that are definitionaly equal for the checker.
2024-03-08 17:39:37 -03:00

7 lines
240 B
Plaintext

List.fold
: ∀(T: *) ∀(list: (List T)) (List.Folder T)
= λT λlist λP λcons λnil
use fold_P = λxs P
use fold_cons = λhead λtail (cons head (List.fold T tail P cons nil))
use fold_nil = nil
(~list fold_P fold_cons fold_nil)