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


Dictionaries

Version: 1.7#139 (2001/11/12, 17:24:35 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.