Import Debian changes 20180207-1
[hcoop/debian/mlton.git] / basis-library / text / text.sml
1 (* Copyright (C) 2002-2007 Henry Cejtin, Matthew Fluet, Suresh
2 * Jagannathan, and Stephen Weeks.
3 *
4 * MLton is released under a BSD-style license.
5 * See the file MLton-LICENSE for details.
6 *)
7
8 structure Text: TEXT =
9 struct
10 structure Char = Char
11 structure CharArray = CharArray
12 structure CharArraySlice = CharArraySlice
13 structure CharVector = CharVector
14 structure CharVectorSlice = CharVectorSlice
15 structure String = String
16 structure Substring = Substring
17 end
18
19 structure WideText: TEXT =
20 struct
21 structure Char = WideChar
22 structure CharArray = WideCharArray
23 structure CharArraySlice = WideCharArraySlice
24 structure CharVector = WideCharVector
25 structure CharVectorSlice = WideCharVectorSlice
26 structure String = WideString
27 structure Substring = WideSubstring
28 end