src/Pure/thm.ML
changeset 61039 80f40d89dab6
parent 60952 762cb38a3147
child 61042 c2155072c2f4
--- a/src/Pure/thm.ML	Fri Aug 28 11:52:06 2015 +0200
+++ b/src/Pure/thm.ML	Fri Aug 28 11:53:09 2015 +0200
@@ -70,6 +70,7 @@
   val theory_name_of_thm: thm -> string
   val maxidx_of: thm -> int
   val maxidx_thm: thm -> int -> int
+  val shyps_of: thm -> sort Ord_List.T
   val hyps_of: thm -> term list
   val prop_of: thm -> term
   val tpairs_of: thm -> (term * term) list
@@ -412,6 +413,7 @@
 
 val maxidx_of = #maxidx o rep_thm;
 fun maxidx_thm th i = Int.max (maxidx_of th, i);
+val shyps_of = #shyps o rep_thm;
 val hyps_of = #hyps o rep_thm;
 val prop_of = #prop o rep_thm;
 val tpairs_of = #tpairs o rep_thm;