object ScalaUniv extends Serializable
- Alphabetic
- By Inheritance
- ScalaUniv
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- case class FineSymbTyp[U <: Term with Subs[U]](name: AnySym, symobj: (AnySym) => U) extends Typ[U] with Symbolic with Product with Serializable
Symbolic types, which the compiler knows are types.
- case class FineUniv[U <: Term with Subs[U]](symobj: (AnySym) => U) extends Typ[Typ[U]] with BaseUniv with Product with Serializable
- case class FuncTypUniv[W <: Term with Subs[W], U <: Term with Subs[U]](domuniv: Typ[Typ[W]], codomuniv: Typ[Typ[U]]) extends Typ[FuncTyp[W, U]] with Product with Serializable
Universe whose elements are FuncTyps
- case class HigherUniv[U <: Typ[Term] with Subs[U]](univ: Typ[U]) extends Typ[Typ[U]] with Product with Serializable
given a universe with objects of scala type Typ[U], gives one with scala type Typ[Typ[U]]
Deprecated Type Members
- case class PiTypUniv[W <: Term with Subs[W], U <: Term with Subs[U]](domuniv: Typ[Typ[W]], codomuniv: Typ[Typ[U]]) extends Typ[PiTyp[W, U]] with Product with Serializable
Universe with objects Pi-Types
Universe with objects Pi-Types
- Annotations
- @deprecated
- Deprecated
(Since version 14/12/2016) Use PiDefn
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
- implicit val baseUniv: ScalaUniv[Term]
scala universe with no refinement.
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- def depFunc[W <: Term with Subs[W], U <: Term with Subs[U]](dom: Typ[W], func: (W) => U)(implicit su: ScalaUniv[U]): FuncLike[W, U]
returns dependent function inferring type fiber.
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- implicit def funcUniv[W <: Term with Subs[W], U <: Term with Subs[U]](implicit domsc: ScalaUniv[W], codomsc: ScalaUniv[U]): ScalaUniv[Func[W, U]]
implicitly build universe with elements FuncTyps from universes for domain and codomain.
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- implicit def higherUniv[U <: Term with Subs[U]](implicit sc: ScalaUniv[U]): ScalaUniv[Typ[U]]
implicitly returns from a scala universe of Typ[U] one of Typ[Typ[U]]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def newobj: Nothing
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def typFamily[W <: Term with Subs[W], U <: Term with Subs[U]](dom: Typ[W], f: (W) => Typ[U])(implicit su: ScalaUniv[U]): FuncDefn[W, Typ[U]]
create type family, implicitly using a scala-universe object to build the codomain.
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- object DepFunc
Companion to dependent functions
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
- implicit def piUniv[W <: Term with Subs[W], U <: Term with Subs[U]](implicit domsc: ScalaUniv[W], codomsc: ScalaUniv[U]): ScalaUniv[FuncLike[W, U]]
builds scala universe for pi-types given ones for domain and codomain types.
builds scala universe for pi-types given ones for domain and codomain types.
- Annotations
- @deprecated
- Deprecated
(Since version 14/12/2016) Use PiDefn