Const

izumi.sbtgen.model.Const$
See theConst companion trait
object Const

Attributes

Companion:
trait
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
Const.type

Members list

Concise view

Type members

Classlikes

final case class CBoolean(value: Boolean) extends Scalar

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Scalar
trait Const
class Object
trait Matchable
class Any
final case class CInt(value: Int) extends Scalar

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Scalar
trait Const
class Object
trait Matchable
class Any
final case class CMap(value: Map[Scalar, Const]) extends Const

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Const
class Object
trait Matchable
class Any
final case class CRaw(value: String) extends Scalar

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Scalar
trait Const
class Object
trait Matchable
class Any
final case class CSeq(value: Seq[Const]) extends Const

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Const
class Object
trait Matchable
class Any
final case class CString(value: String) extends Scalar

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Scalar
trait Const
class Object
trait Matchable
class Any
final case class CTuple(value: Seq[Const]) extends Const

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Const
class Object
trait Matchable
class Any
object Conv

Attributes

Companion:
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Conv.type
trait Conv[T]

Attributes

Companion:
object
Graph
Supertypes
class Object
trait Matchable
class Any
case object EmptyMap extends Const

Attributes

Graph
Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait Const
class Object
trait Matchable
class Any
Self type
case object EmptySeq extends Const

Attributes

Graph
Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait Const
class Object
trait Matchable
class Any
Self type
sealed trait Scalar extends Const

Attributes

Graph
Supertypes
trait Const
class Object
trait Matchable
class Any
Known subtypes
class CBoolean
class CInt
class CRaw
class CString

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Implicits

Implicits

implicit val BoolToConst: Conv[Boolean]
implicit def ConstToConst[C <: Const]: Conv[C]
implicit val IntToConst: Conv[Int]
implicit val StrToConst: Conv[String]
implicit def make[T : Conv](a: T): Const
implicit def mapToConst[T : Conv]: Conv[Map[Scalar, T]]
implicit def seqToConst[T : Conv]: Conv[Seq[T]]
implicit def t2ToConst[T1 : Conv, T2 : Conv]: Conv[(T1, T2)]