SCM Repository
View of /sml/branches/FLINT/src/compiler/PervEnv/Boot/pre-basis-structs.sml
Parent Directory
|
Revision Log
Revision 132 -
(download)
(annotate)
Mon Sep 7 19:48:36 1998 UTC (22 years, 7 months ago) by monnier
File size: 1035 byte(s)
Mon Sep 7 19:48:36 1998 UTC (22 years, 7 months ago) by monnier
File size: 1035 byte(s)
Release_110_8
(* pre-basis-structs.sml * * COPYRIGHT (c) 1995 AT&T Bell Laboratories. * * These are basis structures with only types, so that the basis signatures * can compile. * *) structure Int = struct type int = PrimTypes.int end; structure Int31 = struct type int = PrimTypes.int end; structure Int32 = struct type int = PrimTypes.int32 end; structure Word = struct type word = PrimTypes.word end; structure Word8 = struct type word = PrimTypes.word8 end; structure Word31 = struct type word = PrimTypes.word end; structure Word32 = struct type word = PrimTypes.word32 end; structure Real64 = struct type real = PrimTypes.real end; structure StringCvt = struct datatype radix = BIN | OCT | DEC | HEX datatype realfmt = EXACT | SCI of int option | FIX of int option | GEN of int option type ('a, 'b) reader = 'b -> ('a * 'b) option end; structure String = struct type string = PrimTypes.string end (* * $Log$ *)
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |