Kind/book/BBT.to_list.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

17 lines
443 B
Plaintext

BBT.to_list
: ∀(K: *) ∀(V: *) ∀(map: (BBT K V))
(List (Pair K V))
= λK λV λmap
use P = λx (List (Pair K V))
use bin = λsize λkey λval λlft λrgt
use lft = (BBT.to_list K V lft)
use rgt = (BBT.to_list K V rgt)
use pair = (Pair.new K V key val)
use list = (List.cons
(Pair K V)
pair
(List.concat (Pair K V) lft rgt)
)
list
use tip = (List.nil (Pair K V))
(~map P bin tip)