object QValue extends QValuePlatform
- Source
- QValue.scala
- Alphabetic
- By Inheritance
- QValue
- QValuePlatform
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
- lazy val One: QValue
- lazy val Zero: QValue
- implicit val catsInstancesForHttp4sQValue: Order[QValue] with Show[QValue] with Hash[QValue] with HttpCodec[QValue] with BoundedEnumerable[QValue]
- def fromDouble(d: Double): ParseResult[QValue]
- def fromString(s: String): ParseResult[QValue]
- def fromThousandths(thousandths: Int): ParseResult[QValue]
- def parse(s: String): ParseResult[QValue]
- def unapply(qValue: QValue): Option[Int]
- def unsafeFromString(s: String): QValue
-
def
☠(thousandths: Int): QValue
Exists to support compile-time verified literals.
Exists to support compile-time verified literals. Do not call directly.
Deprecated Value Members
-
macro
def
q(d: Double): QValue
Supports a literal syntax for validated QValues.
Supports a literal syntax for validated QValues.
Example:
q(0.5).success == QValue.fromDouble(0.5) q(1.1) // does not compile: out of range val d = 0.5 q(d) // does not compile: not a literal
- Definition Classes
- QValuePlatform
- Annotations
- @deprecated
- Deprecated
(Since version 0.20) use qValue"" string interpolation instead