object Format extends FormatGeneric
- Source
- format.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Format
- FormatGeneric
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
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
- def apply[A, B](x: (A, B))(implicit fA: Format[A], fB: Format[B]): String
- def apply[A](x: A)(implicit f: Format[A]): String
- def apply[A](f: (A) => String): Format[A]
easily construct a format object
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def degree: Numeric
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def ft2in: Numeric
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def kv[A, B](x: (A, B))(implicit fA: Format[A], fB: Format[B]): String
- def kvColor[A, B](x: (A, B))(implicit fA: Format[A], fB: Format[B]): String
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def negative: Numeric
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def number: Numeric
- def pp[A](x: A)(implicit f: Format[A]): Unit
- def print[A](x: A)(implicit f: Format[A]): Unit
- def println[A](x: A)(implicit f: Format[A]): Unit
- def rad2deg: Numeric
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def timetag(zone: String): Numeric
- def toString(): String
- Definition Classes
- AnyRef → Any
- def utc: Numeric
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- 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()
- implicit object FormatBaseValue extends Format[BaseValue[_]]
- implicit object FormatByte extends Format[Byte]
- implicit object FormatDouble extends Format[Double]
- implicit object FormatShort extends Format[Short]
- implicit object FormatString extends Format[String]
- implicit object FormatSymbol extends Format[Symbol]
- implicit object FormatU4 extends Format[U4]
- implicit object FormatUtm extends Format[Utm]
- implicit object FormatVec extends Format[Vec]
- implicit object FormatAny extends Format[Any]
This Supper trait is used as a lower order precedence for the less specific implicit matches It is also used for cases where type information has been lost and can be found at runtime try to use a more specific formatter
This Supper trait is used as a lower order precedence for the less specific implicit matches It is also used for cases where type information has been lost and can be found at runtime try to use a more specific formatter
- Definition Classes
- FormatGeneric