Oberon || Library || Module Index || Search Engine || Definition || Module


Ulm's Oberon Library:
IdentKeys


NAME

IdentKeys - keys representing constant strings

SYNOPSIS

TYPE Value = POINTER TO ValueRec;
TYPE ValueRec =
      RECORD
         (Keys.ValueRec)
         ident: ConstStrings.String;
      END;


VAR key: Keys.Key;

PROCEDURE CreateValue(VAR keyval: Value);

DESCRIPTION

IdentKeys offers a key basing on Keys that may be used to compare and sort by constant strings (see ConstStrings). CreateValue creates a key value (with ident left undefined) with its interface procedures for Keys and PersistentObjects installed.

DIAGNOSTICS

IdentKeys does not generate any error events on its own.

SEE ALSO

ConstStrings
constant strings
Keys
key-based total order relations
PersistentObjects
operations for persistent objects
Streams
general abstraction for input and output streams

Edited by: borchert, last change: 2004/06/25, revision: 1.1, converted to HTML: 2004/06/25

Oberon || Library || Module Index || Search Engine || Definition || Module