Packages

final class BSONDouble extends BSONValue with Value with Value

A BSON Double.

reactivemongo.api.bson.BSONDouble(1.23D)
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BSONDouble
  2. Value
  3. BSONBooleanLike
  4. Value
  5. BSONNumberLike
  6. BSONValue
  7. AnyRef
  8. Any
Implicitly
  1. by valueProducer
  2. by identityValueProducer
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. lazy val asInt: Try[Int]
    Definition Classes
    BSONDoubleBSONValue
  2. final def asOpt[T](implicit reader: BSONReader[T]): Option[T]

    Optionally parses this value as a T one.

    Optionally parses this value as a T one.

    returns

    Some successfully parsed value, or None if fails

    import reactivemongo.api.bson.BSONValue
    
    def foo(v: BSONValue): Option[String] = v.asOpt[String]
    Definition Classes
    BSONValue
    Annotations
    @inline()
  3. final def asTry[T](implicit reader: BSONReader[T]): Try[T]

    Tries to parse this value as a T one.

    Tries to parse this value as a T one.

    import scala.util.Try
    import reactivemongo.api.bson.BSONValue
    
    def foo(v: BSONValue): Try[String] = v.asTry[String]
    Definition Classes
    BSONValue
  4. val byteCode: Byte

    The code indicating the BSON type for this value as Byte

    The code indicating the BSON type for this value as Byte

    Definition Classes
    BSONDoubleBSONValue
  5. val code: Int

    The code indicating the BSON type for this value

    The code indicating the BSON type for this value

    Definition Classes
    BSONDoubleBSONValue
  6. def equals(that: Any): Boolean
    Definition Classes
    BSONDouble → AnyRef → Any
  7. def hashCode(): Int
    Definition Classes
    BSONDouble → AnyRef → Any
  8. def toBoolean: Success[Boolean]

    Returns the boolean equivalent value

    Returns the boolean equivalent value

    Definition Classes
    BSONDoubleBSONBooleanLike
    Annotations
    @inline()
  9. lazy val toDouble: Try[Double]

    Converts this number into a Double.

    Converts this number into a Double.

    Definition Classes
    BSONDoubleBSONNumberLikeBSONValue
  10. lazy val toFloat: Try[Float]

    Converts this number into a Float.

    Converts this number into a Float.

    Definition Classes
    BSONDoubleBSONNumberLikeBSONValue
  11. def toInt: Try[Int]

    Converts this number into an Int.

    Converts this number into an Int.

    Definition Classes
    BSONDoubleBSONNumberLike
    Annotations
    @inline()
  12. def toLong: Try[Long]

    Converts this number into a Long.

    Converts this number into a Long.

    Definition Classes
    BSONDoubleBSONNumberLike
    Annotations
    @inline()
  13. def toString(): String
    Definition Classes
    BSONDouble → AnyRef → Any
  14. val value: Double