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


Ulm's Oberon Library:
IntArgs


NAME

IntArgs - arguments of type INTEGER

SYNOPSIS

TYPE Value = POINTER TO ValueRec;
TYPE ValueRec =
   RECORD
      (Args.ValueRec)
      int: INTEGER;
   END;


VAR type: Args.Type;

PROCEDURE Create(VAR value: Args.Value; int: INTEGER);

DESCRIPTION

IntArgs implements the INTEGER argument type for Args. IntArgs accepts signed integers between MIN(INTEGER) and MAX(INTEGER).

Create allows to create and set an INTEGER-typed value.

DIAGNOSTICS

IntArgs does not generate any error events itself. Miscellaneous error events may be generated on reading by Read.IntS or the underlying stream implementation.

SEE ALSO

Args
general abstraction for arguments
Read
scanning integer values from a stream

Edited by: borchert, last change: 1995/04/13, revision: 1.1, converted to HTML: 1997/04/28

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