Kind/book/Parser.map.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

8 lines
283 B
Plaintext

Parser.map
: ∀(A: *) ∀(B: *) ∀(f: ∀(a: A) B) ∀(p: (Parser A))
(Parser B)
= λA λB λf λp λcode
use P = λx (Parser.Result B)
use done = λcode λvalue (Parser.Result.done B code (f value))
use fail = λerror (Parser.Result.fail B error)
(~(p code) P done fail)