src/HOL/Option.thy
author oheimb
Sat, 15 Feb 1997 17:48:19 +0100
changeset 2636 4b30dbe4a020
parent 2019 b45d9f2042e0
child 4133 0a08c2b9b1ed
permissions -rw-r--r--
added delcongs, Delcongs, unsafe_solver, safe_solver, HOL_basic_ss, safe_asm_more_full_simp_ta, clasimpset HOL_css with modification functions new addss (old version retained as unsafe_addss), new Addss (old version retained as Unsafe_Addss), new auto_tac (old version retained as unsafe_auto_tac),

(*  Title:      Option.thy
    ID:         $Id$
    Author:     Tobias Nipkow
    Copyright   1994  TU Muenchen

Datatype 'a option
*)

Option = Arith +
datatype 'a option = None | Some 'a
end