added structure Inttab;
authorwenzelm
Thu, 09 Jun 2005 12:03:29 +0200
changeset 16342 b146c31a2955
parent 16341 e573e5167eda
child 16343 7c7120469f0d
added structure Inttab; tuned comments;
src/Pure/General/table.ML
--- a/src/Pure/General/table.ML	Thu Jun 09 12:03:28 2005 +0200
+++ b/src/Pure/General/table.ML	Thu Jun 09 12:03:29 2005 +0200
@@ -2,8 +2,8 @@
     ID:         $Id$
     Author:     Markus Wenzel and Stefan Berghofer, TU Muenchen
 
-Generic tables and tables indexed by strings.  Efficient purely
-functional implementation using balanced 2-3 trees.
+Generic tables.  Efficient purely functional implementation using
+balanced 2-3 trees.
 *)
 
 signature KEY =
@@ -341,6 +341,5 @@
 
 end;
 
-
-(*tables indexed by strings*)
+structure Inttab = TableFun(type key = int val ord = int_ord);
 structure Symtab = TableFun(type key = string val ord = string_ord);