src/Pure/General/table.ML
changeset 18007 2c9005459d15
parent 17913 4159e1523ad8
child 18946 ce65d2d2e0c2
equal deleted inserted replaced
18006:535de280c812 18007:2c9005459d15
   387 
   387 
   388 end;
   388 end;
   389 
   389 
   390 structure Inttab = TableFun(type key = int val ord = int_ord);
   390 structure Inttab = TableFun(type key = int val ord = int_ord);
   391 structure Symtab = TableFun(type key = string val ord = fast_string_ord);
   391 structure Symtab = TableFun(type key = string val ord = fast_string_ord);
   392 structure PStrStrTab = TableFun(
       
   393   type key = string * string
       
   394   val ord = prod_ord fast_string_ord fast_string_ord
       
   395 );