object TheoryConverter extends Converter[Theory]
Representation of theories in ML. (See the general discussion of Context, the same things apply to Theory.)
- ML type:
theory - Representation of theory
thyas an exception:E_Theory thy
Available as an implicit value by importing de.unruh.isabelle.pure.Implicits._
- Source
- Theory.scala
- Alphabetic
- By Inheritance
- TheoryConverter
- Converter
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
exnToValue(implicit isabelle: Isabelle, ec: ExecutionContext): String
Returns ML code for an (anonymous) function of type
exn -> athat converts a value encoded as an exception back into the original value.Returns ML code for an (anonymous) function of type
exn -> athat converts a value encoded as an exception back into the original value.It is recommended that this function produces informative match failures in case of invalid inputs. MLValue.matchFailExn is a helper function that facilitates this.
This function should always return the same value, at least for the same
isabelle.- Definition Classes
- TheoryConverter → Converter
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
mlType(implicit isabelle: Isabelle, ec: ExecutionContext): String
Returns the ML type corresponding to
A.Returns the ML type corresponding to
A.This function should always return the same value, at least for the same
isabelle.- Definition Classes
- TheoryConverter → Converter
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
retrieve(value: MLValue[Theory])(implicit isabelle: Isabelle, ec: ExecutionContext): Future[Theory]
Given an mlvalue.MLValue
value, retrieves and returns the value referenced byvaluein the Isabelle object store.Given an mlvalue.MLValue
value, retrieves and returns the value referenced byvaluein the Isabelle object store.Must not invoke
value.retrieve orvalue.retrieveNow because those functions invokethis.retrieve. (But calling retrieve or retrieveNow on other MLValues is allowed as long as no cyclic dependencies are created.)- Definition Classes
- TheoryConverter → Converter
-
def
store(value: Theory)(implicit isabelle: Isabelle, ec: ExecutionContext): MLValue[Theory]
Given a
value : A, transfers and storesvaluein the Isabelle object store and returns an mlvalue.MLValue referencing the value in the object store.Given a
value : A, transfers and storesvaluein the Isabelle object store and returns an mlvalue.MLValue referencing the value in the object store.Must not invoke MLValue
(value)because that functions invokesthis.store. (But calling MLValue(...)on other values is allowed as long as no cyclic dependencies are created.)- Definition Classes
- TheoryConverter → Converter
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
valueToExn(implicit isabelle: Isabelle, ec: ExecutionContext): String
Returns ML code for an (anonymous) function of type
a -> exnthat converts a value into its encoding as an exception.Returns ML code for an (anonymous) function of type
a -> exnthat converts a value into its encoding as an exception.It is recommended that this function produces informative match failures in case of invalid inputs. MLValue.matchFailExn is a helper function that facilitates this.
This function should always return the same value, at least for the same
isabelle.- Definition Classes
- TheoryConverter → Converter
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )