src/Pure/General/ROOT.ML
author wenzelm
Sun, 25 Jun 2000 23:45:47 +0200
changeset 9119 8ca79837b41b
parent 9095 3b26cc949016
child 12420 a2a05c952b4d
permissions -rw-r--r--
tuned;

(*  Title:      Pure/General/ROOT.ML
    ID:         $Id$

Library of general tools --- prefer this over the 'Standard ML Library'.
*)

use "table.ML";
use "graph.ML";
use "heap.ML";
use "object.ML";
use "seq.ML";
use "name_space.ML";
use "position.ML";
use "scan.ML";
use "source.ML";
use "symbol.ML";
use "path.ML";
use "url.ML";
use "file.ML";
use "buffer.ML";
use "history.ML";
use "pretty.ML";

structure PureGeneral =
struct
  structure Symtab = Symtab;
  structure Graph = Graph;
  structure Object = Object;
  structure Seq = Seq;
  structure NameSpace = NameSpace;
  structure Position = Position;
  structure Scan = Scan;
  structure Source = Source;
  structure Symbol = Symbol;
  structure Path = Path;
  structure Url = Url;
  structure File = File;
  structure Buffer = Buffer;
  structure History = History;
  structure Pretty = Pretty;
end;