1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
(* ****** ****** *)
//
// HX-2017-10-28:
// For supporting
// "unityped" programming
//
(* ****** ****** *)
//
(*
#define
ATS_DYNLOADFLAG 1
*)
#define
ATS_PACKNAME
"ATSLIB.libats.ML.COMPILE"
//
(* ****** ****** *)
//
#include
"share/atspre_staload.hats"
//
(* ****** ****** *)
#staload UN = $UNSAFE
(* ****** ****** *)
//
#staload
"libats/ML/SATS/string.sats"
#staload _(*anon*) =
"libats/ML/DATS/string.dats"
//
(* ****** ****** *)
//
// HX: Interface
//
(* ****** ****** *)
//
extern
fun
string_tolower(string): string
and
string_toupper(string): string
//
overload tolower with string_tolower
overload toupper with string_toupper
//
(* ****** ****** *)
//
// HX: Implementation
//
(* ****** ****** *)
implement
string_tolower
(cs) =
string_copywith
( cs
, lam(c) =>
$UN.cast{charNZ}(tolower(c))
) (* end of [string_tolower] *)
(* ****** ****** *)
implement
string_toupper
(cs) =
string_copywith
( cs
, lam(c) =>
$UN.cast{charNZ}(toupper(c))
) (* end of [string_toupper] *)
(* ****** ****** *)
(* end of [string.dats] *)
|