added bind_thms, store_thms;
authorwenzelm
Wed, 01 Sep 1999 21:21:01 +0200
changeset 7421 0577bb18b1ab
parent 7420 cba45c114f3b
child 7422 c63d619286a3
added bind_thms, store_thms;
doc-src/Ref/goals.tex
--- a/doc-src/Ref/goals.tex	Wed Sep 01 21:20:04 1999 +0200
+++ b/doc-src/Ref/goals.tex	Wed Sep 01 21:21:01 1999 +0200
@@ -134,11 +134,13 @@
 \label{ExtractingAndStoringTheProvedTheorem}
 \index{theorems!extracting proved}
 \begin{ttbox} 
-qed       : string -> unit
-result    : unit -> thm
-uresult   : unit -> thm
-bind_thm  : string * thm -> unit
-store_thm : string * thm -> thm
+qed        : string -> unit
+result     : unit -> thm
+uresult    : unit -> thm
+bind_thm   : string * thm -> unit
+bind_thms  : string * thm list -> unit
+store_thm  : string * thm -> thm
+store_thms : string * thm list -> thm list
 \end{ttbox}
 \begin{ttdescription}
 \item[\ttindexbold{qed} $name$;] is the usual way of ending a proof.
@@ -177,6 +179,10 @@
 \item[\ttindexbold{store_thm} ($name$, $thm$)]\index{theorems!storing}
   stores $thm$ in the theorem database associated with its theory and
   returns that theorem.
+  
+\item[\ttindexbold{bind_thms} and \ttindexbold{store_thms}] are similar to
+  \texttt{bind_thm} and \texttt{store_thm}, but store lists of theorems.
+
 \end{ttdescription}