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


Dictionaries

Author(s): The CLIP Group.

Version: 1.11#116 (2003/12/22, 18:52:5 CET)

This module provides predicates for implementing dictionaries. Such dictionaries are currently implemented as ordered binary trees of key-value pairs.

Usage and interface (dict)

Documentation on exports (dict)

PROPERTY: dictionary/1:

Usage: dictionary(D)

PREDICATE: dictionary/5:

Usage: dictionary(D, K, V, L, R)

PREDICATE: dic_node/2:

Usage: dic_node(D, N)

PREDICATE: dic_lookup/3:

Usage: dic_lookup(D, K, V)

PREDICATE: dic_lookup/4:

Usage: dic_lookup(D, K, V, O)

PREDICATE: dic_get/3:

Usage: dic_get(D, K, V)

PREDICATE: dic_replace/4:

Usage: dic_replace(D, K, V, D1)


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