src/Pure/library.ML
author paulson
Fri, 22 Dec 2006 20:58:14 +0100
changeset 21899 dab16d14db60
parent 21859 03e1e75ad2e5
child 21920 f1c096441023
permissions -rw-r--r--
string primtives
     1 (*  Title:      Pure/library.ML
     2     ID:         $Id$
     3     Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
     4     Author:     Markus Wenzel, TU Muenchen
     5 
     6 Basic library: functions, options, pairs, booleans, lists, integers,
     7 strings, lists as sets, balanced trees, orders, current directory, misc.
     8 
     9 See also General/basics.ML for the most fundamental concepts.
    10 *)
    11 
    12 infix 1 |>>>
    13 infix 2 ?
    14 infix 3 o oo ooo oooo
    15 infix 4 ~~ upto downto
    16 infix orf andf \ \\ mem mem_int mem_string union union_int
    17   union_string inter inter_int inter_string subset subset_int subset_string
    18 
    19 signature BASIC_LIBRARY =
    20 sig
    21   (*functions*)
    22   val I: 'a -> 'a
    23   val K: 'a -> 'b -> 'a
    24   val curry: ('a * 'b -> 'c) -> 'a -> 'b -> 'c
    25   val uncurry: ('a -> 'b -> 'c) -> 'a * 'b -> 'c
    26   val |>>> : ('a * 'c) * ('a -> 'b * 'd) -> 'b * ('c * 'd)
    27   val ? : bool * ('a -> 'a) -> 'a -> 'a
    28   val oo: ('a -> 'b) * ('c -> 'd -> 'a) -> 'c -> 'd -> 'b
    29   val ooo: ('a -> 'b) * ('c -> 'd -> 'e -> 'a) -> 'c -> 'd -> 'e -> 'b
    30   val oooo: ('a -> 'b) * ('c -> 'd -> 'e -> 'f -> 'a) -> 'c -> 'd -> 'e -> 'f -> 'b
    31   val funpow: int -> ('a -> 'a) -> 'a -> 'a
    32 
    33   (*exceptions*)
    34   exception EXCEPTION of exn * string
    35   val do_transform_failure: bool ref
    36   val transform_failure: (exn -> exn) -> ('a -> 'b) -> 'a -> 'b
    37   datatype 'a result = Result of 'a | Exn of exn
    38   val capture: ('a -> 'b) -> 'a -> 'b result
    39   val release: 'a result -> 'a
    40   val get_result: 'a result -> 'a option
    41   val get_exn: 'a result -> exn option
    42 
    43   (*errors*)
    44   exception SYS_ERROR of string
    45   val sys_error: string -> 'a
    46   exception ERROR of string
    47   val error: string -> 'a
    48   val cat_error: string -> string -> 'a
    49   val assert: bool -> string -> unit
    50   val deny: bool -> string -> unit
    51   val assert_all: ('a -> bool) -> 'a list -> ('a -> string) -> unit
    52 
    53   (*pairs*)
    54   val pair: 'a -> 'b -> 'a * 'b
    55   val rpair: 'a -> 'b -> 'b * 'a
    56   val fst: 'a * 'b -> 'a
    57   val snd: 'a * 'b -> 'b
    58   val eq_fst: ('a * 'c -> bool) -> ('a * 'b) * ('c * 'd) -> bool
    59   val eq_snd: ('b * 'd -> bool) -> ('a * 'b) * ('c * 'd) -> bool
    60   val eq_pair: ('a * 'c -> bool) -> ('b * 'd -> bool) -> ('a * 'b) * ('c * 'd) -> bool
    61   val swap: 'a * 'b -> 'b * 'a
    62   val apfst: ('a -> 'b) -> 'a * 'c -> 'b * 'c
    63   val apsnd: ('a -> 'b) -> 'c * 'a -> 'c * 'b
    64   val pairself: ('a -> 'b) -> 'a * 'a -> 'b * 'b
    65 
    66   (*booleans*)
    67   val equal: ''a -> ''a -> bool
    68   val not_equal: ''a -> ''a -> bool
    69   val orf: ('a -> bool) * ('a -> bool) -> 'a -> bool
    70   val andf: ('a -> bool) * ('a -> bool) -> 'a -> bool
    71   val exists: ('a -> bool) -> 'a list -> bool
    72   val forall: ('a -> bool) -> 'a list -> bool
    73   val set: bool ref -> bool
    74   val reset: bool ref -> bool
    75   val toggle: bool ref -> bool
    76   val change: 'a ref -> ('a -> 'a) -> unit
    77   val setmp: 'a ref -> 'a -> ('b -> 'c) -> 'b -> 'c
    78   val conditional: bool -> (unit -> unit) -> unit
    79 
    80   (*lists*)
    81   exception UnequalLengths
    82   val single: 'a -> 'a list
    83   val the_single: 'a list -> 'a
    84   val singleton: ('a list -> 'b list) -> 'a -> 'b
    85   val apply: ('a -> 'a) list -> 'a -> 'a
    86   val foldr1: ('a * 'a -> 'a) -> 'a list -> 'a
    87   val foldl_map: ('a * 'b -> 'a * 'c) -> 'a * 'b list -> 'a * 'c list
    88   val flat: 'a list list -> 'a list
    89   val unflat: 'a list list -> 'b list -> 'b list list
    90   val burrow: ('a list -> 'b list) -> 'a list list -> 'b list list
    91   val fold_burrow: ('a list -> 'c -> 'b list * 'd) -> 'a list list -> 'c -> 'b list list * 'd
    92   val maps: ('a -> 'b list) -> 'a list -> 'b list
    93   val chop: int -> 'a list -> 'a list * 'a list
    94   val dropwhile: ('a -> bool) -> 'a list -> 'a list
    95   val nth: 'a list -> int -> 'a
    96   val nth_map: int -> ('a -> 'a) -> 'a list -> 'a list
    97   val nth_list: 'a list list -> int -> 'a list
    98   val map_index: (int * 'a -> 'b) -> 'a list -> 'b list
    99   val fold_index: (int * 'a -> 'b -> 'b) -> 'a list -> 'b -> 'b
   100   val split_last: 'a list -> 'a list * 'a
   101   val find_index: ('a -> bool) -> 'a list -> int
   102   val find_index_eq: ''a -> ''a list -> int
   103   val find_first: ('a -> bool) -> 'a list -> 'a option
   104   val get_index: ('a -> 'b option) -> 'a list -> (int * 'b) option
   105   val get_first: ('a -> 'b option) -> 'a list -> 'b option
   106   val eq_list: ('a * 'b -> bool) -> 'a list * 'b list -> bool
   107   val map2: ('a -> 'b -> 'c) -> 'a list -> 'b list -> 'c list
   108   val fold2: ('a -> 'b -> 'c -> 'c) -> 'a list -> 'b list -> 'c -> 'c
   109   val zip_options: 'a list -> 'b option list -> ('a * 'b) list
   110   val ~~ : 'a list * 'b list -> ('a * 'b) list
   111   val split_list: ('a * 'b) list -> 'a list * 'b list
   112   val separate: 'a -> 'a list -> 'a list
   113   val replicate: int -> 'a -> 'a list
   114   val multiply: 'a list -> 'a list list -> 'a list list
   115   val product: 'a list -> 'b list -> ('a * 'b) list
   116   val filter: ('a -> bool) -> 'a list -> 'a list
   117   val filter_out: ('a -> bool) -> 'a list -> 'a list
   118   val map_filter: ('a -> 'b option) -> 'a list -> 'b list
   119   val is_prefix: ('a * 'a -> bool) -> 'a list -> 'a list -> bool
   120   val take_prefix: ('a -> bool) -> 'a list -> 'a list * 'a list
   121   val chop_prefix: ('a * 'b -> bool) -> 'a list * 'b list -> 'a list * ('a list * 'b list)
   122   val take_suffix: ('a -> bool) -> 'a list -> 'a list * 'a list
   123   val prefixes1: 'a list -> 'a list list
   124   val prefixes: 'a list -> 'a list list
   125   val suffixes1: 'a list -> 'a list list
   126   val suffixes: 'a list -> 'a list list
   127 
   128   (*integers*)
   129   val gcd: IntInf.int * IntInf.int -> IntInf.int
   130   val lcm: IntInf.int * IntInf.int -> IntInf.int
   131   val inc: int ref -> int
   132   val dec: int ref -> int
   133   val upto: int * int -> int list
   134   val downto: int * int -> int list
   135   val downto0: int list * int -> bool
   136   val radixpand: int * int -> int list
   137   val radixstring: int * string * int -> string
   138   val string_of_int: int -> string
   139   val string_of_indexname: string * int -> string
   140   val read_intinf: int -> string list -> IntInf.int * string list
   141   val read_int: string list -> int * string list
   142   val oct_char: string -> string
   143 
   144   (*strings*)
   145   val nth_string: string -> int -> string
   146   val fold_string: (string -> 'a -> 'a) -> string -> 'a -> 'a
   147   val exists_string: (string -> bool) -> string -> bool
   148   val forall_string: (string -> bool) -> string -> bool
   149   val enclose: string -> string -> string -> string
   150   val unenclose: string -> string
   151   val quote: string -> string
   152   val space_implode: string -> string list -> string
   153   val commas: string list -> string
   154   val commas_quote: string list -> string
   155   val cat_lines: string list -> string
   156   val space_explode: string -> string -> string list
   157   val split_lines: string -> string list
   158   val prefix_lines: string -> string -> string
   159   val untabify: string list -> string list
   160   val prefix: string -> string -> string
   161   val suffix: string -> string -> string
   162   val unprefix: string -> string -> string
   163   val unsuffix: string -> string -> string
   164   val replicate_string: int -> string -> string
   165   val translate_string: (string -> string) -> string -> string
   166   val nospaces: string -> string
   167 
   168   (*lists as sets -- see also Pure/General/ord_list.ML*)
   169   val member: ('b * 'a -> bool) -> 'a list -> 'b -> bool
   170   val insert: ('a * 'a -> bool) -> 'a -> 'a list -> 'a list
   171   val remove: ('b * 'a -> bool) -> 'b -> 'a list -> 'a list
   172   val subtract: ('b * 'a -> bool) -> 'b list -> 'a list -> 'a list
   173   val merge: ('a * 'a -> bool) -> 'a list * 'a list -> 'a list
   174   val mem: ''a * ''a list -> bool
   175   val mem_int: int * int list -> bool
   176   val mem_string: string * string list -> bool
   177   val union: ''a list * ''a list -> ''a list
   178   val union_int: int list * int list -> int list
   179   val union_string: string list * string list -> string list
   180   val gen_union: ('a * 'a -> bool) -> 'a list * 'a list -> 'a list
   181   val gen_inter: ('a * 'b -> bool) -> 'a list * 'b list -> 'a list
   182   val inter: ''a list * ''a list -> ''a list
   183   val inter_int: int list * int list -> int list
   184   val inter_string: string list * string list -> string list
   185   val subset: ''a list * ''a list -> bool
   186   val subset_int: int list * int list -> bool
   187   val subset_string: string list * string list -> bool
   188   val eq_set: ''a list * ''a list -> bool
   189   val eq_set_string: string list * string list -> bool
   190   val gen_subset: ('a * 'b -> bool) -> 'a list * 'b list -> bool
   191   val gen_eq_set: ('a * 'b -> bool) -> 'a list * 'b list -> bool
   192   val \ : ''a list * ''a -> ''a list
   193   val \\ : ''a list * ''a list -> ''a list
   194   val distinct: ('a * 'a -> bool) -> 'a list -> 'a list
   195   val duplicates: ('a * 'a -> bool) -> 'a list -> 'a list
   196   val has_duplicates: ('a * 'a -> bool) -> 'a list -> bool
   197 
   198   (*lists as tables -- see also Pure/General/alist.ML*)
   199   val gen_merge_lists: ('a * 'a -> bool) -> 'a list -> 'a list -> 'a list
   200   val merge_lists: ''a list -> ''a list -> ''a list
   201   val merge_alists: (''a * 'b) list -> (''a * 'b) list -> (''a * 'b) list
   202 
   203   (*balanced trees*)
   204   exception Balance
   205   val fold_bal: ('a * 'a -> 'a) -> 'a list -> 'a
   206   val access_bal: ('a -> 'a) * ('a -> 'a) * 'a -> int -> int -> 'a
   207   val accesses_bal: ('a -> 'a) * ('a -> 'a) * 'a -> int -> 'a list
   208 
   209   (*orders*)
   210   val is_equal: order -> bool
   211   val rev_order: order -> order
   212   val make_ord: ('a * 'a -> bool) -> 'a * 'a -> order
   213   val int_ord: int * int -> order
   214   val string_ord: string * string -> order
   215   val fast_string_ord: string * string -> order
   216   val option_ord: ('a * 'b -> order) -> 'a option * 'b option -> order
   217   val prod_ord: ('a * 'b -> order) -> ('c * 'd -> order) -> ('a * 'c) * ('b * 'd) -> order
   218   val dict_ord: ('a * 'b -> order) -> 'a list * 'b list -> order
   219   val list_ord: ('a * 'b -> order) -> 'a list * 'b list -> order
   220   val sort: ('a * 'a -> order) -> 'a list -> 'a list
   221   val sort_distinct: ('a * 'a -> order) -> 'a list -> 'a list
   222   val sort_strings: string list -> string list
   223   val sort_wrt: ('a -> string) -> 'a list -> 'a list
   224 
   225   (*random numbers*)
   226   exception RANDOM
   227   val random: unit -> real
   228   val random_range: int -> int -> int
   229   val one_of: 'a list -> 'a
   230   val frequency: (int * 'a) list -> 'a
   231 
   232   (*current directory*)
   233   val cd: string -> unit
   234   val pwd: unit -> string
   235 
   236   (*misc*)
   237   val divide_and_conquer: ('a -> 'a list * ('b list -> 'b)) -> 'a -> 'b
   238   val partition_eq: ('a * 'a -> bool) -> 'a list -> 'a list list
   239   val partition_list: (int -> 'a -> bool) -> int -> int -> 'a list -> 'a list list
   240   val gensym: string -> string
   241   val scanwords: (string -> bool) -> string list -> string list
   242   type stamp
   243   val stamp: unit -> stamp
   244   type serial
   245   val serial: unit -> serial
   246   val serial_string: unit -> string
   247   structure Object: sig type T end
   248 end;
   249 
   250 signature LIBRARY =
   251 sig
   252   include BASIC_LIBRARY
   253   val foldl: ('a * 'b -> 'a) -> 'a * 'b list -> 'a
   254   val foldr: ('a * 'b -> 'b) -> 'a list * 'b -> 'b
   255   val take: int * 'a list -> 'a list
   256   val drop: int * 'a list -> 'a list
   257   val last_elem: 'a list -> 'a
   258   val seq: ('a -> unit) -> 'a list -> unit
   259 end;
   260 
   261 structure Library: LIBRARY =
   262 struct
   263 
   264 (* functions *)
   265 
   266 fun I x = x;
   267 fun K x = fn _ => x;
   268 fun curry f x y = f (x, y);
   269 fun uncurry f (x, y) = f x y;
   270 
   271 (*application and structured results -- old version*)
   272 fun (x, y) |>>> f = let val (x', z) = f x in (x', (y, z)) end;
   273 
   274 (*conditional application*)
   275 fun b ? f = fn x => if b then f x else x;
   276 
   277 (*composition with multiple args*)
   278 fun (f oo g) x y = f (g x y);
   279 fun (f ooo g) x y z = f (g x y z);
   280 fun (f oooo g) x y z w = f (g x y z w);
   281 
   282 (*function exponentiation: f(...(f x)...) with n applications of f*)
   283 fun funpow n f x =
   284   let fun rep (0, x) = x
   285         | rep (n, x) = rep (n - 1, f x)
   286   in rep (n, x) end;
   287 
   288 
   289 (* exceptions *)
   290 
   291 val do_transform_failure = ref true;
   292 
   293 fun transform_failure exn f x =
   294   if ! do_transform_failure then
   295     f x handle Interrupt => raise Interrupt | e => raise exn e
   296   else f x;
   297 
   298 exception EXCEPTION of exn * string;
   299 
   300 datatype 'a result =
   301   Result of 'a |
   302   Exn of exn;
   303 
   304 fun capture f x = Result (f x) handle e => Exn e;
   305 
   306 fun release (Result y) = y
   307   | release (Exn e) = raise e;
   308 
   309 fun get_result (Result x) = SOME x
   310   | get_result _ = NONE;
   311 
   312 fun get_exn (Exn exn) = SOME exn
   313   | get_exn _ = NONE;
   314 
   315 
   316 (* errors *)
   317 
   318 exception SYS_ERROR of string;
   319 fun sys_error msg = raise SYS_ERROR msg;
   320 
   321 exception ERROR of string;
   322 fun error msg = raise ERROR msg;
   323 
   324 fun cat_error "" msg = error msg
   325   | cat_error msg1 msg2 = error (msg1 ^ "\n" ^ msg2);
   326 
   327 fun assert p msg = if p then () else error msg;
   328 fun deny p msg = if p then error msg else ();
   329 
   330 fun assert_all pred list msg =
   331   let
   332     fun ass [] = ()
   333       | ass (x :: xs) = if pred x then ass xs else error (msg x);
   334   in ass list end;
   335 
   336 
   337 (* pairs *)
   338 
   339 fun pair x y = (x, y);
   340 fun rpair x y = (y, x);
   341 
   342 fun fst (x, y) = x;
   343 fun snd (x, y) = y;
   344 
   345 fun eq_fst eq ((x1, _), (x2, _)) = eq (x1, x2);
   346 fun eq_snd eq ((_, y1), (_, y2)) = eq (y1, y2);
   347 fun eq_pair eqx eqy ((x1, y1), (x2, y2)) = eqx (x1, x2) andalso eqy (y1, y2);
   348 
   349 fun swap (x, y) = (y, x);
   350 
   351 (*apply function to components*)
   352 fun apfst f (x, y) = (f x, y);
   353 fun apsnd f (x, y) = (x, f y);
   354 fun pairself f (x, y) = (f x, f y);
   355 
   356 
   357 (* booleans *)
   358 
   359 (*polymorphic equality*)
   360 fun equal x y = x = y;
   361 fun not_equal x y = x <> y;
   362 
   363 (*combining predicates*)
   364 fun p orf q = fn x => p x orelse q x;
   365 fun p andf q = fn x => p x andalso q x;
   366 
   367 (*exists pred [x1, ..., xn] ===> pred x1 orelse ... orelse pred xn*)
   368 fun exists (pred: 'a -> bool) : 'a list -> bool =
   369   let fun boolf [] = false
   370         | boolf (x :: xs) = pred x orelse boolf xs
   371   in boolf end;
   372 
   373 (*forall pred [x1, ..., xn] ===> pred x1 andalso ... andalso pred xn*)
   374 fun forall (pred: 'a -> bool) : 'a list -> bool =
   375   let fun boolf [] = true
   376         | boolf (x :: xs) = pred x andalso boolf xs
   377   in boolf end;
   378 
   379 
   380 (* flags *)
   381 
   382 fun set flag = (flag := true; true);
   383 fun reset flag = (flag := false; false);
   384 fun toggle flag = (flag := not (! flag); ! flag);
   385 
   386 fun change r f = r := f (! r);
   387 
   388 (*temporarily set flag during execution*)
   389 fun setmp flag value f x =
   390   let
   391     val orig_value = ! flag;
   392     val _ = flag := value;
   393     val result = capture f x;
   394     val _ = flag := orig_value;
   395   in release result end;
   396 
   397 
   398 (* conditional execution *)
   399 
   400 fun conditional b f = if b then f () else ();
   401 
   402 
   403 
   404 (** lists **)
   405 
   406 exception UnequalLengths;
   407 
   408 fun single x = [x];
   409 
   410 fun the_single [x] = x
   411   | the_single _ = raise Empty;
   412 
   413 fun singleton f x = the_single (f [x]);
   414 
   415 fun apply [] x = x
   416   | apply (f :: fs) x = apply fs (f x);
   417 
   418 
   419 (* fold -- old versions *)
   420 
   421 (*the following versions of fold are designed to fit nicely with infixes*)
   422 
   423 (*  (op @) (e, [x1, ..., xn])  ===>  ((e @ x1) @ x2) ... @ xn
   424     for operators that associate to the left (TAIL RECURSIVE)*)
   425 fun foldl (f: 'a * 'b -> 'a) : 'a * 'b list -> 'a =
   426   let fun itl (e, [])  = e
   427         | itl (e, a::l) = itl (f(e, a), l)
   428   in  itl end;
   429 
   430 (*  (op @) ([x1, ..., xn], e)  ===>   x1 @ (x2 ... @ (xn @ e))
   431     for operators that associate to the right (not tail recursive)*)
   432 fun foldr f (l, e) =
   433   let fun itr [] = e
   434         | itr (a::l) = f(a, itr l)
   435   in  itr l  end;
   436 
   437 (*  (op @) [x1, ..., xn]  ===>   x1 @ (x2 ... @ (x[n-1] @ xn))
   438     for n > 0, operators that associate to the right (not tail recursive)*)
   439 fun foldr1 f [] = raise Empty
   440   | foldr1 f l =
   441       let fun itr [x] = x
   442             | itr (x::l) = f(x, itr l)
   443       in  itr l  end;
   444 
   445 fun foldl_map f =
   446   let
   447     fun fold_aux (x, []) = (x, [])
   448       | fold_aux (x, y :: ys) =
   449           let
   450             val (x', y') = f (x, y);
   451             val (x'', ys') = fold_aux (x', ys);
   452           in (x'', y' :: ys') end;
   453   in fold_aux end;
   454 
   455 
   456 (* basic list functions *)
   457 
   458 fun eq_list eq (list1, list2) =
   459   let
   460     fun eq_lst (x :: xs, y :: ys) = eq (x, y) andalso eq_lst (xs, ys)
   461       | eq_lst _ = true;
   462   in length list1 = length list2 andalso eq_lst (list1, list2) end;
   463 
   464 fun maps f [] = []
   465   | maps f (x :: xs) = f x @ maps f xs;
   466 
   467 fun chop n xs = unfold_rev n dest xs;
   468 
   469 (*take the first n elements from a list*)
   470 fun take (n, []) = []
   471   | take (n, x :: xs) =
   472       if n > 0 then x :: take (n - 1, xs) else [];
   473 
   474 (*drop the first n elements from a list*)
   475 fun drop (n, []) = []
   476   | drop (n, x :: xs) =
   477       if n > 0 then drop (n - 1, xs) else x :: xs;
   478 
   479 fun dropwhile P [] = []
   480   | dropwhile P (ys as x::xs) = if P x then dropwhile P xs else ys;
   481 
   482 (*return nth element of a list, where 0 designates the first element;
   483   raise Subscript if list too short*)
   484 fun nth xs i = List.nth (xs, i);
   485 
   486 fun nth_list xss i = nth xss i handle Subscript => [];
   487 
   488 fun nth_map 0 f (x :: xs) = f x :: xs
   489   | nth_map n f (x :: xs) = x :: nth_map (n - 1) f xs
   490   | nth_map _ _ [] = raise Subscript;
   491 
   492 fun map_index f =
   493   let
   494     fun mapp _ [] = []
   495       | mapp i (x :: xs) = f (i, x) :: mapp (i+1) xs
   496   in mapp 0 end;
   497 
   498 fun fold_index f =
   499   let
   500     fun fold_aux _ [] y = y
   501       | fold_aux i (x :: xs) y = fold_aux (i+1) xs (f (i, x) y);
   502   in fold_aux 0 end;
   503 
   504 val last_elem = List.last;
   505 
   506 (*rear decomposition*)
   507 fun split_last [] = raise Empty
   508   | split_last [x] = ([], x)
   509   | split_last (x :: xs) = apfst (cons x) (split_last xs);
   510 
   511 (*find the position of an element in a list*)
   512 fun find_index pred =
   513   let fun find _ [] = ~1
   514         | find n (x :: xs) = if pred x then n else find (n + 1) xs;
   515   in find 0 end;
   516 
   517 fun find_index_eq x = find_index (equal x);
   518 
   519 (*find first element satisfying predicate*)
   520 fun find_first _ [] = NONE
   521   | find_first pred (x :: xs) =
   522       if pred x then SOME x else find_first pred xs;
   523 
   524 (*get first element by lookup function*)
   525 fun get_first _ [] = NONE
   526   | get_first f (x :: xs) =
   527       (case f x of
   528         NONE => get_first f xs
   529       | some => some);
   530 
   531 fun get_index f =
   532   let
   533     fun get _ [] = NONE
   534       | get i (x :: xs) =
   535           case f x
   536            of NONE => get (i + 1) xs
   537             | SOME y => SOME (i, y)
   538   in get 0 end;
   539 
   540 val flat = List.concat;
   541 
   542 fun unflat (xs :: xss) ys =
   543       let val (ps, qs) = chop (length xs) ys
   544       in ps :: unflat xss qs end
   545   | unflat [] [] = []
   546   | unflat _ _ = raise UnequalLengths;
   547 
   548 fun burrow f xss = unflat xss (f (flat xss));
   549 
   550 fun fold_burrow f xss s =
   551   apfst (unflat xss) (f (flat xss) s);
   552 
   553 (*like Lisp's MAPC -- seq proc [x1, ..., xn] evaluates
   554   (proc x1; ...; proc xn) for side effects*)
   555 val seq = List.app;
   556 
   557 (*separate s [x1, x2, ..., xn]  ===>  [x1, s, x2, s, ..., s, xn]*)
   558 fun separate s (x :: (xs as _ :: _)) = x :: s :: separate s xs
   559   | separate _ xs = xs;
   560 
   561 (*make the list [x, x, ..., x] of length n*)
   562 fun replicate n (x: 'a) : 'a list =
   563   let fun rep (0, xs) = xs
   564         | rep (n, xs) = rep (n - 1, x :: xs)
   565   in
   566     if n < 0 then raise Subscript
   567     else rep (n, [])
   568   end;
   569 
   570 fun translate_string f = String.translate (f o String.str);
   571 
   572 (*multiply [a, b, c, ...] * [xs, ys, zs, ...]*)
   573 fun multiply [] _ = []
   574   | multiply (x :: xs) yss = map (cons x) yss @ multiply xs yss;
   575 
   576 (*direct product*)
   577 fun product _ [] = []
   578   | product [] _ = []
   579   | product (x :: xs) ys = map (pair x) ys @ product xs ys;
   580 
   581 
   582 (* filter *)
   583 
   584 (*copy the list preserving elements that satisfy the predicate*)
   585 val filter = List.filter;
   586 fun filter_out f = filter (not o f);
   587 val map_filter = List.mapPartial;
   588 
   589 
   590 (* lists of pairs *)
   591 
   592 exception UnequalLengths;
   593 
   594 fun map2 _ [] [] = []
   595   | map2 f (x :: xs) (y :: ys) = f x y :: map2 f xs ys
   596   | map2 _ _ _ = raise UnequalLengths;
   597 
   598 fun fold2 f =
   599   let
   600     fun fold_aux [] [] z = z
   601       | fold_aux (x :: xs) (y :: ys) z = fold_aux xs ys (f x y z)
   602       | fold_aux _ _ _ = raise UnequalLengths;
   603   in fold_aux end;
   604 
   605 fun zip_options (x :: xs) (SOME y :: ys) = (x, y) :: zip_options xs ys
   606   | zip_options (_ :: xs) (NONE :: ys) = zip_options xs ys
   607   | zip_options _ [] = []
   608   | zip_options [] _ = raise UnequalLengths;
   609 
   610 (*combine two lists forming a list of pairs:
   611   [x1, ..., xn] ~~ [y1, ..., yn]  ===>  [(x1, y1), ..., (xn, yn)]*)
   612 fun [] ~~ [] = []
   613   | (x :: xs) ~~ (y :: ys) = (x, y) :: (xs ~~ ys)
   614   | _ ~~ _ = raise UnequalLengths;
   615 
   616 (*inverse of ~~; the old 'split':
   617   [(x1, y1), ..., (xn, yn)]  ===>  ([x1, ..., xn], [y1, ..., yn])*)
   618 val split_list = ListPair.unzip;
   619 
   620 
   621 (* prefixes, suffixes *)
   622 
   623 fun is_prefix _ [] _ = true
   624   | is_prefix eq (x :: xs) (y :: ys) = eq (x, y) andalso is_prefix eq xs ys
   625   | is_prefix eq _ _ = false;
   626 
   627 (* [x1, ..., xi, ..., xn]  --->  ([x1, ..., x(i-1)], [xi, ..., xn])
   628    where xi is the first element that does not satisfy the predicate*)
   629 fun take_prefix (pred : 'a -> bool)  (xs: 'a list) : 'a list * 'a list =
   630   let fun take (rxs, []) = (rev rxs, [])
   631         | take (rxs, x :: xs) =
   632             if  pred x  then  take(x :: rxs, xs)  else  (rev rxs, x :: xs)
   633   in  take([], xs)  end;
   634 
   635 fun chop_prefix eq ([], ys) = ([], ([], ys))
   636   | chop_prefix eq (xs, []) = ([], (xs, []))
   637   | chop_prefix eq (xs as x::xs', ys as y::ys') =
   638       if eq (x, y) then
   639         let val (ps', xys'') = chop_prefix eq (xs', ys')
   640         in (x::ps', xys'') end
   641       else ([], (xs, ys));
   642 
   643 (* [x1, ..., xi, ..., xn]  --->  ([x1, ..., xi], [x(i+1), ..., xn])
   644    where xi is the last element that does not satisfy the predicate*)
   645 fun take_suffix _ [] = ([], [])
   646   | take_suffix pred (x :: xs) =
   647       (case take_suffix pred xs of
   648         ([], sffx) => if pred x then ([], x :: sffx) else ([x], sffx)
   649       | (prfx, sffx) => (x :: prfx, sffx));
   650 
   651 fun prefixes1 [] = []
   652   | prefixes1 (x :: xs) = map (cons x) ([] :: prefixes1 xs);
   653 
   654 fun prefixes xs = [] :: prefixes1 xs;
   655 
   656 fun suffixes1 xs = map rev (prefixes1 (rev xs));
   657 fun suffixes xs = [] :: suffixes1 xs;
   658 
   659 
   660 (** integers **)
   661 
   662 fun gcd (x, y) =
   663   let fun gxd x y : IntInf.int =
   664     if y = IntInf.fromInt 0 then x else gxd y (x mod y)
   665   in if x < y then gxd y x else gxd x y end;
   666 
   667 fun lcm (x, y) = (x * y) div gcd (x, y);
   668 
   669 fun inc i = (i := ! i + 1; ! i);
   670 fun dec i = (i := ! i - 1; ! i);
   671 
   672 
   673 (* lists of integers *)
   674 
   675 (*make the list [from, from + 1, ..., to]*)
   676 fun (i upto j) =
   677   if i > j then [] else i :: (i + 1 upto j);
   678 
   679 (*make the list [from, from - 1, ..., to]*)
   680 fun (i downto j) =
   681   if i < j then [] else i :: (i - 1 downto j);
   682 
   683 (*predicate: downto0 (is, n) <=> is = [n, n - 1, ..., 0]*)
   684 fun downto0 (i :: is, n) = i = n andalso downto0 (is, n - 1)
   685   | downto0 ([], n) = n = ~1;
   686 
   687 
   688 (* convert integers to strings *)
   689 
   690 (*expand the number in the given base;
   691   example: radixpand (2, 8) gives [1, 0, 0, 0]*)
   692 fun radixpand (base, num) : int list =
   693   let
   694     fun radix (n, tail) =
   695       if n < base then n :: tail
   696       else radix (n div base, (n mod base) :: tail)
   697   in radix (num, []) end;
   698 
   699 (*expands a number into a string of characters starting from "zerochar";
   700   example: radixstring (2, "0", 8) gives "1000"*)
   701 fun radixstring (base, zerochar, num) =
   702   let val offset = ord zerochar;
   703       fun chrof n = chr (offset + n)
   704   in implode (map chrof (radixpand (base, num))) end;
   705 
   706 
   707 val string_of_int = Int.toString;
   708 
   709 fun string_of_indexname (a,0) = a
   710   | string_of_indexname (a,i) = a ^ "_" ^ Int.toString i;
   711 
   712 
   713 (* read integers *)
   714 
   715 fun read_intinf radix cs =
   716   let
   717     val zero = ord "0";
   718     val limit = zero + radix;
   719     fun scan (num, []) = (num, [])
   720       | scan (num, c :: cs) =
   721         if zero <= ord c andalso ord c < limit then
   722           scan (IntInf.fromInt radix * num + IntInf.fromInt (ord c - zero), cs)
   723         else (num, c :: cs);
   724   in scan (IntInf.fromInt 0, cs) end;
   725 
   726 fun read_int cs = apfst IntInf.toInt (read_intinf 10 cs);
   727 
   728 fun oct_char s = chr (IntInf.toInt (#1 (read_intinf 8 (explode s))));
   729 
   730 
   731 
   732 (** strings **)
   733 
   734 (* functions tuned for strings, avoiding explode *)
   735 
   736 fun nth_string str i =
   737   (case try String.substring (str, i, 1) of
   738     SOME s => s
   739   | NONE => raise Subscript);
   740 
   741 fun fold_string f str x0 =
   742   let
   743     val n = size str;
   744     fun iter (x, i) =
   745       if i < n then iter (f (String.substring (str, i, 1)) x, i + 1) else x;
   746   in iter (x0, 0) end;
   747 
   748 fun exists_string pred str =
   749   let
   750     val n = size str;
   751     fun ex i = i < n andalso (pred (String.substring (str, i, 1)) orelse ex (i + 1));
   752   in ex 0 end;
   753 
   754 fun forall_string pred = not o exists_string (not o pred);
   755 
   756 (*enclose in brackets*)
   757 fun enclose lpar rpar str = lpar ^ str ^ rpar;
   758 fun unenclose str = String.substring (str, 1, size str - 2);
   759 
   760 (*simple quoting (does not escape special chars)*)
   761 val quote = enclose "\"" "\"";
   762 
   763 (*space_implode "..." (explode "hello") = "h...e...l...l...o"*)
   764 fun space_implode a bs = implode (separate a bs);
   765 
   766 val commas = space_implode ", ";
   767 val commas_quote = commas o map quote;
   768 
   769 (*concatenate messages, one per line, into a string*)
   770 val cat_lines = space_implode "\n";
   771 
   772 (*space_explode "." "h.e..l.lo" = ["h", "e", "", "l", "lo"]*)
   773 fun space_explode _ "" = []
   774   | space_explode sep s = String.fields (fn c => str c = sep) s;
   775 
   776 val split_lines = space_explode "\n";
   777 
   778 fun prefix_lines "" txt = txt
   779   | prefix_lines prfx txt = txt |> split_lines |> map (fn s => prfx ^ s) |> cat_lines;
   780 
   781 fun untabify chs =
   782   let
   783     val tab_width = 8;
   784 
   785     fun untab (_, "\n") = (0, ["\n"])
   786       | untab (pos, "\t") =
   787           let val d = tab_width - (pos mod tab_width) in (pos + d, replicate d " ") end
   788       | untab (pos, c) = (pos + 1, [c]);
   789   in
   790     if not (exists (fn c => c = "\t") chs) then chs
   791     else flat (#2 (foldl_map untab (0, chs)))
   792   end;
   793 
   794 fun prefix prfx s = prfx ^ s;
   795 fun suffix sffx s = s ^ sffx;
   796 
   797 fun unprefix prfx s =
   798   if String.isPrefix prfx s then String.substring (s, size prfx, size s - size prfx)
   799   else raise Fail "unprefix";
   800 
   801 fun unsuffix sffx s =
   802   if String.isSuffix sffx s then String.substring (s, 0, size s - size sffx)
   803   else raise Fail "unsuffix";
   804 
   805 fun replicate_string 0 _ = ""
   806   | replicate_string 1 a = a
   807   | replicate_string k a =
   808       if k mod 2 = 0 then replicate_string (k div 2) (a ^ a)
   809       else replicate_string (k div 2) (a ^ a) ^ a;
   810 
   811 val nospaces = String.translate (fn c => if Char.isSpace c then "" else str c);
   812 
   813 
   814 (** lists as sets -- see also Pure/General/ord_list.ML **)
   815 
   816 (*canonical member, insert, remove*)
   817 fun member eq list x =
   818   let
   819     fun memb [] = false
   820       | memb (y :: ys) = eq (x, y) orelse memb ys;
   821   in memb list end;
   822 
   823 fun insert eq x xs = if member eq xs x then xs else x :: xs;
   824 fun remove eq x xs = if member eq xs x then filter_out (fn y => eq (x, y)) xs else xs;
   825 
   826 fun subtract eq = fold (remove eq);
   827 
   828 fun merge _ ([], ys) = ys
   829   | merge eq (xs, ys) = fold_rev (insert eq) ys xs;
   830 
   831 (*old-style infixes*)
   832 fun x mem xs = member (op =) xs x;
   833 fun (x: int) mem_int xs = member (op =) xs x;
   834 fun (x: string) mem_string xs = member (op =) xs x;
   835 
   836 
   837 (*union of sets represented as lists: no repetitions*)
   838 fun xs union [] = xs
   839   | [] union ys = ys
   840   | (x :: xs) union ys = xs union (insert (op =) x ys);
   841 
   842 (*union of sets, optimized version for ints*)
   843 fun (xs:int list) union_int [] = xs
   844   | [] union_int ys = ys
   845   | (x :: xs) union_int ys = xs union_int (insert (op =) x ys);
   846 
   847 (*union of sets, optimized version for strings*)
   848 fun (xs:string list) union_string [] = xs
   849   | [] union_string ys = ys
   850   | (x :: xs) union_string ys = xs union_string (insert (op =) x ys);
   851 
   852 (*generalized union*)
   853 fun gen_union eq (xs, []) = xs
   854   | gen_union eq ([], ys) = ys
   855   | gen_union eq (x :: xs, ys) = gen_union eq (xs, insert eq x ys);
   856 
   857 
   858 (*intersection*)
   859 fun [] inter ys = []
   860   | (x :: xs) inter ys =
   861       if x mem ys then x :: (xs inter ys) else xs inter ys;
   862 
   863 (*intersection, optimized version for ints*)
   864 fun ([]:int list) inter_int ys = []
   865   | (x :: xs) inter_int ys =
   866       if x mem_int ys then x :: (xs inter_int ys) else xs inter_int ys;
   867 
   868 (*intersection, optimized version for strings *)
   869 fun ([]:string list) inter_string ys = []
   870   | (x :: xs) inter_string ys =
   871       if x mem_string ys then x :: (xs inter_string ys) else xs inter_string ys;
   872 
   873 (*generalized intersection*)
   874 fun gen_inter eq ([], ys) = []
   875   | gen_inter eq (x::xs, ys) =
   876       if member eq ys x then x :: gen_inter eq (xs, ys)
   877       else gen_inter eq (xs, ys);
   878 
   879 
   880 (*subset*)
   881 fun [] subset ys = true
   882   | (x :: xs) subset ys = x mem ys andalso xs subset ys;
   883 
   884 (*subset, optimized version for ints*)
   885 fun ([]: int list) subset_int ys = true
   886   | (x :: xs) subset_int ys = x mem_int ys andalso xs subset_int ys;
   887 
   888 (*subset, optimized version for strings*)
   889 fun ([]: string list) subset_string ys = true
   890   | (x :: xs) subset_string ys = x mem_string ys andalso xs subset_string ys;
   891 
   892 (*set equality*)
   893 fun eq_set (xs, ys) =
   894   xs = ys orelse (xs subset ys andalso ys subset xs);
   895 
   896 (*set equality for strings*)
   897 fun eq_set_string ((xs: string list), ys) =
   898   xs = ys orelse (xs subset_string ys andalso ys subset_string xs);
   899 
   900 fun gen_subset eq (xs, ys) = forall (member eq ys) xs;
   901 
   902 fun gen_eq_set eq (xs, ys) =
   903   eq_list eq (xs, ys) orelse
   904     (gen_subset eq (xs, ys) andalso gen_subset (eq o swap) (ys, xs));
   905 
   906 
   907 (*removing an element from a list WITHOUT duplicates*)
   908 fun (y :: ys) \ x = if x = y then ys else y :: (ys \ x)
   909   | [] \ x = [];
   910 fun ys \\ xs = foldl (op \) (ys,xs);
   911 
   912 
   913 (*makes a list of the distinct members of the input; preserves order, takes
   914   first of equal elements*)
   915 fun distinct eq lst =
   916   let
   917     fun dist (rev_seen, []) = rev rev_seen
   918       | dist (rev_seen, x :: xs) =
   919           if member eq rev_seen x then dist (rev_seen, xs)
   920           else dist (x :: rev_seen, xs);
   921   in dist ([], lst) end;
   922 
   923 (*returns a list containing all repeated elements exactly once; preserves
   924   order, takes first of equal elements*)
   925 fun duplicates eq lst =
   926   let
   927     fun dups (rev_dups, []) = rev rev_dups
   928       | dups (rev_dups, x :: xs) =
   929           if member eq rev_dups x orelse not (member eq xs x) then
   930             dups (rev_dups, xs)
   931           else dups (x :: rev_dups, xs);
   932   in dups ([], lst) end;
   933 
   934 fun has_duplicates eq =
   935   let
   936     fun dups [] = false
   937       | dups (x :: xs) = member eq xs x orelse dups xs;
   938   in dups end;
   939 
   940 
   941 (** association lists -- legacy operations **)
   942 
   943 fun gen_merge_lists _ xs [] = xs
   944   | gen_merge_lists _ [] ys = ys
   945   | gen_merge_lists eq xs ys = xs @ filter_out (member eq xs) ys;
   946 
   947 fun merge_lists xs ys = gen_merge_lists (op =) xs ys;
   948 fun merge_alists xs = gen_merge_lists (eq_fst (op =)) xs;
   949 
   950 
   951 (** balanced trees **)
   952 
   953 exception Balance;      (*indicates non-positive argument to balancing fun*)
   954 
   955 (*balanced folding; avoids deep nesting*)
   956 fun fold_bal f [x] = x
   957   | fold_bal f [] = raise Balance
   958   | fold_bal f xs =
   959       let val (ps, qs) = chop (length xs div 2) xs
   960       in  f (fold_bal f ps, fold_bal f qs)  end;
   961 
   962 (*construct something of the form f(...g(...(x)...)) for balanced access*)
   963 fun access_bal (f, g, x) n i =
   964   let fun acc n i =     (*1<=i<=n*)
   965           if n=1 then x else
   966           let val n2 = n div 2
   967           in  if i<=n2 then f (acc n2 i)
   968                        else g (acc (n-n2) (i-n2))
   969           end
   970   in  if 1<=i andalso i<=n then acc n i else raise Balance  end;
   971 
   972 (*construct ALL such accesses; could try harder to share recursive calls!*)
   973 fun accesses_bal (f, g, x) n =
   974   let fun acc n =
   975           if n=1 then [x] else
   976           let val n2 = n div 2
   977               val acc2 = acc n2
   978           in  if n-n2=n2 then map f acc2 @ map g acc2
   979                          else map f acc2 @ map g (acc (n-n2)) end
   980   in  if 1<=n then acc n else raise Balance  end;
   981 
   982 
   983 
   984 (** orders **)
   985 
   986 fun is_equal EQUAL = true
   987   | is_equal _ = false;
   988 
   989 fun rev_order LESS = GREATER
   990   | rev_order EQUAL = EQUAL
   991   | rev_order GREATER = LESS;
   992 
   993 (*assume rel is a linear strict order*)
   994 fun make_ord rel (x, y) =
   995   if rel (x, y) then LESS
   996   else if rel (y, x) then GREATER
   997   else EQUAL;
   998 
   999 val int_ord = Int.compare;
  1000 val string_ord = String.compare;
  1001 
  1002 fun fast_string_ord (s1, s2) =
  1003   (case int_ord (size s1, size s2) of EQUAL => string_ord (s1, s2) | ord => ord);
  1004 
  1005 fun option_ord ord (SOME x, SOME y) = ord (x, y)
  1006   | option_ord _ (NONE, NONE) = EQUAL
  1007   | option_ord _ (NONE, SOME _) = LESS
  1008   | option_ord _ (SOME _, NONE) = GREATER;
  1009 
  1010 (*lexicographic product*)
  1011 fun prod_ord a_ord b_ord ((x, y), (x', y')) =
  1012   (case a_ord (x, x') of EQUAL => b_ord (y, y') | ord => ord);
  1013 
  1014 (*dictionary order -- in general NOT well-founded!*)
  1015 fun dict_ord elem_ord (x :: xs, y :: ys) =
  1016       (case elem_ord (x, y) of EQUAL => dict_ord elem_ord (xs, ys) | ord => ord)
  1017   | dict_ord _ ([], []) = EQUAL
  1018   | dict_ord _ ([], _ :: _) = LESS
  1019   | dict_ord _ (_ :: _, []) = GREATER;
  1020 
  1021 (*lexicographic product of lists*)
  1022 fun list_ord elem_ord (xs, ys) =
  1023   (case int_ord (length xs, length ys) of EQUAL => dict_ord elem_ord (xs, ys) | ord => ord);
  1024 
  1025 
  1026 (* sorting *)
  1027 
  1028 (*quicksort -- stable, i.e. does not reorder equal elements*)
  1029 fun quicksort unique ord =
  1030   let
  1031     fun qsort [] = []
  1032       | qsort (xs as [_]) = xs
  1033       | qsort (xs as [x, y]) =
  1034           (case ord (x, y) of
  1035             LESS => xs
  1036           | EQUAL => if unique then [x] else xs
  1037           | GREATER => [y, x])
  1038       | qsort xs =
  1039           let val (lts, eqs, gts) = part (nth xs (length xs div 2)) xs
  1040           in qsort lts @ eqs @ qsort gts end
  1041     and part _ [] = ([], [], [])
  1042       | part pivot (x :: xs) = add (ord (x, pivot)) x (part pivot xs)
  1043     and add LESS x (lts, eqs, gts) = (x :: lts, eqs, gts)
  1044       | add EQUAL x (lts, [], gts) = (lts, [x], gts)
  1045       | add EQUAL x (res as (lts, eqs, gts)) = if unique then res else (lts, x :: eqs, gts)
  1046       | add GREATER x (lts, eqs, gts) = (lts, eqs, x :: gts);
  1047   in qsort end;
  1048 
  1049 fun sort ord = quicksort false ord;
  1050 fun sort_distinct ord = quicksort true ord;
  1051 
  1052 val sort_strings = sort string_ord;
  1053 fun sort_wrt sel xs = sort (string_ord o pairself sel) xs;
  1054 
  1055 
  1056 
  1057 (** random numbers **)
  1058 
  1059 exception RANDOM;
  1060 
  1061 fun rmod x y = x - y * Real.realFloor (x / y);
  1062 
  1063 local
  1064   val a = 16807.0;
  1065   val m = 2147483647.0;
  1066   val random_seed = ref 1.0;
  1067 in
  1068 
  1069 fun random () =
  1070   let val r = rmod (a * !random_seed) m
  1071   in (random_seed := r; r) end;
  1072 
  1073 end;
  1074 
  1075 fun random_range l h =
  1076   if h < l orelse l < 0 then raise RANDOM
  1077   else l + Real.floor (rmod (random ()) (real (h - l + 1)));
  1078 
  1079 fun one_of xs = nth xs (random_range 0 (length xs - 1));
  1080 
  1081 fun frequency xs =
  1082   let
  1083     val sum = foldl op + (0, map fst xs);
  1084     fun pick n ((k: int, x) :: xs) =
  1085       if n <= k then x else pick (n - k) xs
  1086   in pick (random_range 1 sum) xs end;
  1087 
  1088 
  1089 (** current directory **)
  1090 
  1091 val cd = OS.FileSys.chDir;
  1092 val pwd = OS.FileSys.getDir;
  1093 
  1094 
  1095 
  1096 (** misc **)
  1097 
  1098 fun divide_and_conquer decomp x =
  1099   let val (ys, recomb) = decomp x
  1100   in recomb (map (divide_and_conquer decomp) ys) end;
  1101 
  1102 
  1103 (*Partition a list into buckets  [ bi, b(i+1), ..., bj ]
  1104    putting x in bk if p(k)(x) holds.  Preserve order of elements if possible.*)
  1105 fun partition_list p i j =
  1106   let fun part k xs =
  1107             if k>j then
  1108               (case xs of [] => []
  1109                          | _ => raise Fail "partition_list")
  1110             else
  1111             let val (ns, rest) = List.partition (p k) xs;
  1112             in  ns :: part(k+1)rest  end
  1113   in  part i end;
  1114 
  1115 fun partition_eq (eq:'a * 'a -> bool) =
  1116   let
  1117     fun part [] = []
  1118       | part (x :: ys) =
  1119           let val (xs, xs') = List.partition (fn y => eq (x, y)) ys
  1120           in (x::xs)::(part xs') end
  1121   in part end;
  1122 
  1123 
  1124 
  1125 (* generating identifiers *)
  1126 
  1127 (** Freshly generated identifiers; supplied prefix MUST start with a letter **)
  1128 local
  1129 (*Maps 0-63 to A-Z, a-z, 0-9 or _ or ' for generating random identifiers*)
  1130 fun char i =      if i<26 then chr (ord "A" + i)
  1131              else if i<52 then chr (ord "a" + i - 26)
  1132              else if i<62 then chr (ord"0" + i - 52)
  1133              else if i=62 then "_"
  1134              else  (*i=63*)    "'";
  1135 
  1136 val charVec = Vector.tabulate (64, char);
  1137 
  1138 fun newid n =
  1139   let
  1140   in  implode (map (fn i => Vector.sub(charVec,i)) (radixpand (64,n)))  end;
  1141 
  1142 val seedr = ref 0;
  1143 
  1144 in
  1145 
  1146 fun gensym pre = pre ^ (#1(newid (!seedr), inc seedr));
  1147 
  1148 end;
  1149 
  1150 
  1151 (* lexical scanning *)
  1152 
  1153 (*scan a list of characters into "words" composed of "letters" (recognized by
  1154   is_let) and separated by any number of non-"letters"*)
  1155 fun scanwords is_let cs =
  1156   let fun scan1 [] = []
  1157         | scan1 cs =
  1158             let val (lets, rest) = take_prefix is_let cs
  1159             in implode lets :: scanwords is_let rest end;
  1160   in scan1 (#2 (take_prefix (not o is_let) cs)) end;
  1161 
  1162 
  1163 (* stamps and serial numbers *)
  1164 
  1165 type stamp = unit ref;
  1166 val stamp: unit -> stamp = ref;
  1167 
  1168 type serial = int;
  1169 local val count = ref 0
  1170 in fun serial () = inc count end;
  1171 
  1172 val serial_string = string_of_int o serial;
  1173 
  1174 
  1175 (* generic objects *)
  1176 
  1177 (*note that the builtin exception datatype may be extended by new
  1178   constructors at any time*)
  1179 structure Object = struct type T = exn end;
  1180 
  1181 end;
  1182 
  1183 structure BasicLibrary: BASIC_LIBRARY = Library;
  1184 open BasicLibrary;