Go to the first, previous, next, last section, table of contents.


Identity lists

Author(s): Francisco Bueno.

Version: 1.11#145 (2004/1/1, 14:1:41 CET)

The operations in this module handle lists by performing equality checks via identity instead of unification.

Usage and interface (idlists)

Documentation on exports (idlists)

PREDICATE: member_0/2:

member_0(X, Xs)

True iff memberchk/2 is true.

PREDICATE: memberchk/2:

memberchk(X, Xs)

Checks that X is an element of (list) Xs.

PREDICATE: list_insert/2:

Usage: list_insert(List, Term)

PREDICATE: add_after/4:

Usage: add_after(L0, E0, E, L)

PREDICATE: add_before/4:

Usage: add_before(L0, E0, E, L)

PREDICATE: delete/3:

Usage: delete(List, Element, Rest)

PREDICATE: subtract/3:

Usage: subtract(Set, Set0, Difference)

PREDICATE: union_idlists/3:

Usage: union_idlists(List1, List2, List)


Go to the first, previous, next, last section, table of contents.