Packages

object Compilation

A Compilation is just a mapping of String -> Compilation.Contract. We define this as a type definition, in the package object (package.scala), rather than as a separate file, because Scala does not permit top-level type declarations, they must be in a class, trait, or object (but package objects are fine.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Compilation
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class Contract(code: String, info: Info) extends Product with Serializable

Value Members

  1. def opt[T <: MaybeEmpty](t: T)(implicit arg0: Format[T]): Option[T]
  2. def opt(str: String): Option[String]
  3. def optStr[T <: MaybeEmpty](t: T)(implicit arg0: Format[T]): Option[String]
  4. def str[T](t: T)(implicit arg0: Format[T]): String
  5. object Contract extends Serializable
  6. object Doc