signature SML_OF_NJ = sig structure Cont: sig type 'a cont val callcc: ('a cont -> 'a) -> 'a val throw: 'a cont -> 'a -> 'b end structure SysInfo: sig exception UNKNOWN datatype os_kind = BEOS | MACOS | OS2 | UNIX | WIN32 val getHostArch: unit -> string val getOSKind: unit -> os_kind val getOSName: unit -> string end val exnHistory: exn -> string list val exportFn: string * (string * string list -> OS.Process.status) -> unit val exportML: string -> bool val getAllArgs: unit -> string list val getArgs: unit -> string list val getCmdName: unit -> string end
SMLofNJ implements a subset of the structure of the same name provided in Standard ML of New Jersey. It is included to make it easier to port programs between the two systems. The semantics of these functions may be different than in SML/NJ.
-
structure Cont
-
SysInfo.getHostArch ()
-
SysInfo.getOSKind
-
SysInfo.getOSName ()
-
exnHistory
-
getCmdName ()
-
getArgs ()
-
getAllArgs ()
-
exportFn f
-
exportML f
-
implements continuations.
-
returns the string for the architecture.
-
returns the OS kind.
-
returns the string for the host.
-
the same as MLton.Exn.history.
-
the same as CommandLine.name ().
-
the same as CommandLine.arguments ().
-
the same as getCmdName()::getArgs().
-
saves the state of the computation to a file that will apply f to the command-line arguments upon restart.
-
saves the state of the computation to file f and continue. Returns true in the restarted computation and false in the continuing computation.