SCM Repository
Annotation of /sml/trunk/src/system/Basis/TypesOnly/basis-structs.sml
Parent Directory
|
Revision Log
Revision 416 - (view) (download)
1 : | monnier | 416 | (* basis-structs.sml |
2 : | * | ||
3 : | * COPYRIGHT (c) 1995 AT&T Bell Laboratories. | ||
4 : | * | ||
5 : | * These are basis structures with only types, so that the basis signatures | ||
6 : | * can compile. | ||
7 : | * | ||
8 : | *) | ||
9 : | |||
10 : | structure Int31 = | ||
11 : | struct | ||
12 : | type int = PrimTypes.int | ||
13 : | end; | ||
14 : | |||
15 : | structure Int32 = | ||
16 : | struct | ||
17 : | type int = PrimTypes.int32 | ||
18 : | end; | ||
19 : | |||
20 : | structure Word8 = | ||
21 : | struct | ||
22 : | type word = PrimTypes.word8 | ||
23 : | end; | ||
24 : | |||
25 : | structure Word31 = | ||
26 : | struct | ||
27 : | type word = PrimTypes.word | ||
28 : | end; | ||
29 : | |||
30 : | structure Word32 = | ||
31 : | struct | ||
32 : | type word = PrimTypes.word32 | ||
33 : | end; | ||
34 : | |||
35 : | structure Real64 = | ||
36 : | struct | ||
37 : | type real = PrimTypes.real | ||
38 : | end; | ||
39 : | |||
40 : | structure String = | ||
41 : | struct | ||
42 : | type string = PrimTypes.string | ||
43 : | end |
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |