src/Pure/General/ROOT.ML
author wenzelm
Mon, 16 Nov 1998 11:32:28 +0100
changeset 5893 c755dfd02509
parent 5864 30b6a3251813
child 6116 8ba2f25610f7
permissions -rw-r--r--
added oo, ooo (*concatenation: 2 and 3 args*);

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

General tools.
*)

use "table.ML";
use "object.ML";
use "seq.ML";
use "name_space.ML";
use "position.ML";
use "path.ML";
use "file.ML";
use "history.ML";

structure PureGeneral =
struct
  structure Symtab = Symtab;
  structure Object = Object;
  structure Seq = Seq;
  structure NameSpace = NameSpace;
  structure Position = Position;
  structure Path = Path;
  structure File = File;
  structure History = History;
end;