src/Pure/General/ROOT.ML
author skalberg
Fri, 05 Dec 2003 19:39:39 +0100
changeset 14278 ae499452700a
parent 12420 a2a05c952b4d
child 14594 3ff9cfc5c403
permissions -rw-r--r--
Added lazy sequences and parser combinators for same.

(*  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 "susp.ML";
use "lazy_seq.ML";
use "lazy_scan.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";
use "xml.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;
  structure XML = XML;
end;