2019-09-22 01:59:48 +04:00
|
|
|
// Test set type and basic operations in PascaLIGO
|
|
|
|
|
2019-07-19 16:35:47 +04:00
|
|
|
const s_e : set(string) = (set_empty : set(string))
|
|
|
|
|
|
|
|
const s_fb : set(string) = set [
|
|
|
|
"foo" ;
|
|
|
|
"bar" ;
|
|
|
|
]
|
|
|
|
|
|
|
|
function add_op (const s : set(string)) : set(string) is
|
|
|
|
begin skip end with set_add("foobar" , s)
|
|
|
|
|
|
|
|
function remove_op (const s : set(string)) : set(string) is
|
|
|
|
begin skip end with set_remove("foobar" , s)
|
|
|
|
|
|
|
|
function mem_op (const s : set(string)) : bool is
|
|
|
|
begin skip end with set_mem("foobar" , s)
|
2019-07-20 15:46:42 +04:00
|
|
|
|