NAME ^

compilers/imcc/sets.c

DESCRIPTION ^

TODO

Functions ^

PARROT_MALLOC Set *set_make(int length)

TODO: Not yet documented!!!

PARROT_MALLOC Set *set_make_full(int length)

TODO: Not yet documented!!!

void set_free(NOTNULL(Set *s))

TODO: Not yet documented!!!

void set_clear(NOTNULL(Set *s))

TODO: Not yet documented!!!

PARROT_MALLOC Set *set_copy(NOTNULL(Set *s))

TODO: Not yet documented!!!

int set_equal(NOTNULL(const Set *s1), NOTNULL(const Set *s2))

TODO: Not yet documented!!!

void set_add(NOTNULL(Set *s), int element)

TODO: Not yet documented!!!

PARROT_WARN_UNUSED_RESULT PARROT_PURE_FUNCTION int set_first_zero(NOTNULL(const Set *s))

TODO: Not yet documented!!!

PARROT_WARN_UNUSED_RESULT PARROT_PURE_FUNCTION int set_contains(NOTNULL(const Set *s), int element)

TODO: Not yet documented!!!

PARROT_MALLOC Set *set_union(NOTNULL(const Set *s1), NOTNULL(const Set *s2))

TODO: Not yet documented!!!

PARROT_MALLOC Set *set_intersec(NOTNULL(const Set *s1), NOTNULL(const Set *s2))

TODO: Not yet documented!!!

void set_intersec_inplace(NOTNULL(Set *s1), NOTNULL(const Set *s2))

TODO: Not yet documented!!!


parrot