Notation |
Equivalent SML with SET and ORDSET
|
|X| | size S |
{} | empty () |
{k} | singleton k |
k∈S | find X k |
X∪{k} | insert (X,k) |
X∖{k} | delete (X,k) |
{k∈X | e} | filterKey (fn k => e) X |
X∪Y | union (X,Y) |
X∩Y | intersection (X,Y) |
X∖Y | difference (X,Y) |
Notation |
Equivalent SML with TABLE and ORDTABLE
|
|T| | size T |
{} | empty () |
{k↦v} | singleton (k,v) |
{k↦e:(k↦v)∈T} | mapKey (fn (k,v) => e) T |
{k↦e:k∈X} | tabulate (fn k => e) X |
{(k↦v)∈T | e} | filterKey (fn (k,v) => e) T |
{e1:(k↦v)∈T | e2} | mapKey (fn (k,v) => e1) (filterKey (fn (k,v) => e2) T) |
T1∪T2 | union (fn (_, v) => v) (T1,T2) |
T1∩T2 | intersection (fn (_, v) => v) (T1,T2) |
T1∩T2 | difference (T1,T2) |
∑(k↦v)∈Te | reduce add 0 (mapKey (fn (k,v) => e) T) |
The meaning of add
and 0
in the
reduce
will depend on the type (e.g. Int.+
and
0
for integers or Real.+
and 0.0
for
reals). We can also replace ∑ with other operations such as min and
\max with the implied semantics.