Kind/book/String.unpar.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

11 lines
391 B
Plaintext

String.unpar
: ∀(fst: Char) ∀(lst: Char) ∀(str: String) String
= λfst λlst λstr
use P = λx String
use cons = λhead λtail
use P = λx ∀(head: Char) ∀(tail: String) String
use true = λhead λtail (String.begin tail)
use false = λhead λtail (String.cons head tail)
(~(Char.equal head fst) P true false head tail)
use nil = String.nil
(~str P cons nil)