alice
library
manual.

Alice Project

The OS structure


________ Synopsis ____________________________________________________

    signature OS
    structure OS : OS
  

The Standard ML Basis' OS structure.

See also: OS.FileSys, OS.Path, OS.Process, OS.IO


________ Import ______________________________________________________

Imported implicitly.


________ Interface ___________________________________________________

    signature OS =
    sig
	eqtype syserror
	exception SysErr of string * syserror option

	val errorMsg :      syserror -> string
	val errorName :     syserror -> string
	val syserror :      string -> syserror option

	structure Process : OS_PROCESS
	structure Path :    OS_PATH
	structure FileSys : OS_FILE_SYS
	structure IO :      OS_IO
    end
  

________ Description _________________________________________________

Like the Standard ML Basis' OS structure.



last modified 2007/Mar/30 17:10