Modula-2 Reloaded

A Modern Typesafe & Literate Programming Notation

Site Menu

Project

Specification

Implementation

Recommendations

Reference

Needs Updating

Work in Progress

Wastebasket

Wiki Manual

edit SideBar

Spec INT 16

INT 16

DEFINITION MODULE INT16 [ZTYPE];

(* 16-bit Integer Numbers *) 


FROM FileIO IMPORT File; (* required for IO *)


(* INT16 type *)

TYPE
    INT16 = OPAQUE RECORD
        value : ARRAY 2 OF OCTET; (* 16 bits *)
    END; (* INT16 *)


(* Z-Type bindings to operators, pervasives and primitives: *)


(* Range *) 

CONST [TMIN] minValue = -32768;
(* Smallest value of type INT16.
   This value is bound to TMIN for type INT16. *) 

CONST [TMAX] maxValue = 32767;
(* Largest value of type INT16.
   This value is bound to TMAX for type INT16. *)


(* Literal assignment *)

PROCEDURE [:=] assign ( VAR assignTo : INT16; literal : ARRAY OF CHAR );
(* Converts string literal to an INT16 value and assigns it to assignTo.
   This procedure is bound to the := operator for literal assignment. *)


(* Type conversions *)

PROCEDURE [::] toCARD  ( n : INT16 ) : CARDINAL;
(* Converts INT16 value n to a CARDINAL value and returns it. This
   function is bound to the :: operator for INT16 to CARDINAL conversion. *)

PROCEDURE [::] toINT ( n : INT16 ) : INTEGER; 
(* Converts INT16 value n to an INTEGER value and returns it. This
   function is bound to the :: operator for INT16 to INTEGER conversion. *)

PROCEDURE [::] fromCARD  ( n : CARDINAL ) : INT16;
(* Converts CARDINAL value n to an INT16 value and returns it. This function
   is bound to the :: operator for CARDINAL to INT16 conversion. *)

PROCEDURE [::] fromINT  ( n : INTEGER ) : INT16;
(* Converts INTEGER value n to an INT16 value and returns it. This function
   is bound to the :: operator for INTEGER to INT16 conversion. *)


(* Monadic arithmetic operations *) 

PROCEDURE [ABS] abs ( n : INT16 ) : INT16;
(* Returns the absolute value of INT16 value n.
   This function is bound to pervasive function ABS for type INT16. *)

PROCEDURE [NEG] neg ( n : INT16 ) : INT16;
(* Returns the sign reversed value of INT16 value n.
   This function is bound to the unary minus operator for type INT16. *)

PROCEDURE [ODD] odd ( n : INT16 ) : BOOLEAN;
(* Returns TRUE if INT16 value n is odd, otherwise FALSE.
   This function is bound to pervasive function ODD for type INT16. *)


(* Dyadic arithmetic operations *) 

PROCEDURE [+] add ( n1, n2 : INT16 ) : INT16;
(* Adds INT16 values n1 and n2 and returns the result.
   This function is bound to the + operator for type INT16. *)

PROCEDURE [-] sub ( n1, n2 : INT16 ) : INT16;
(* Subtracts INT16 value n2 from n1 and returns the result.
   This function is bound to the - operator for type INT16. *)

PROCEDURE [*] multiply ( n1, n2 : INT16 ) : INT16;
(* Multiplies INT16 values n1 and n2 and returns the result.
   This function it bound to the * operator for type INT16. *)

PROCEDURE [/] divide ( n1, n2 : INT16 ) : INT16;
(* Divives INT16 value n1 by n2 and returns the result.
   This function is bound to the / operator for type INT16. *)


(* Relational operations *) 

PROCEDURE [=] isEqual ( n1, n2 : INT16 ) : BOOLEAN;
(* Returns TRUE if INT16 values n1 and n2 are equal, otherwise FALSE.
   This function is bound to operators = and # for type INT16. *)

PROCEDURE [<] isLess ( n1, n2 : INT16 ) : BOOLEAN;
(* Returns TRUE if INT16 value n1 is less than n2, otherwise FASLE.
   This function is bound to operators < and >= for type INT16. *)

PROCEDURE [>] isGreater ( n1, n2 : INT16 ) : BOOLEAN;
(* Returns TRUE if INT16 value n1 is greater than n2, otherwise FALSE.
   This function is bound to operators > and <= for type INT16. *)


(* Scalar conversion primitives *)

CONST digitCapacity = 4; (* maximum digits in native format *)

PROCEDURE [TO] toSXF ( n : INT16; VAR s : ARRAY OF CHAR );
(* Converts INT16 value n to a string in scalar exchange format.
   This procedure is used to synthesise conversions to other scalar types
   when no direct conversion path exists. *)

PROCEDURE [FROM] fromSXF ( VAR n : INT16; CONST s : ARRAY OF CHAR );
(* Converts a string in scalar exchange format to an INT16 value.
   This procedure is used to synthesise conversions from other scalar types
   when no direct conversion path exists. *)


(* IO operations *)

PROCEDURE Read( infile : File; VAR n : INT16 );
(* Reads the textual representation of an INT16 value from stream infile
   - any leading whitespace is skipped
   - any remaining characters that are part of the numeral being read are
     removed from infile
   - the numeric value of the numeral string read is assigned to the variable
     passed in for n
   - the file status is set to any of:
     success, outOfRange, wrongFormat, endOfLine, or endOfInput. This
   procedure is substituted for invocations of READ with an INT16 argument. *)

PROCEDURE Write( outfile : File; n : INT16 );
(* Writes the textual representation of value n to stream outfile. This
   procedure is substituted for invocations of WRITE with an INT16 argument.*)

PROCEDURE WriteF ( outfile      : File;
                   CONST fmtStr : ARRAY OF CHAR;
                   items        : VARIADIC OF INT16 );
(* Writes a formatted textual representation of one or more INT16 values to
   output stream outfile. The output format is determined by fmtStr. This
   procedure is substituted for invocations of WRITEF with one or more
   INT16 arguments. *)

END INT16.