Packages

final case class Velocity(base: Double) extends AnyVal with BaseValue[Velocity] with Product with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Velocity
  2. Serializable
  3. Product
  4. Equals
  5. BaseValue
  6. Ordered
  7. Comparable
  8. AnyVal
  9. Any
Implicitly
  1. by orderingToOrdered
  2. by richDrxAny
  3. by DrxBoundOps
  4. by any2stringadd
  5. by StringFormat
  6. by Ensuring
  7. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Velocity(base: Double)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##: Int
    Definition Classes
    Any
  3. def *(t: Time): Length
  4. def *(scale: Long)(implicit d1: DummyImplicit): Velocity
    Definition Classes
    BaseValue
  5. def *(scale: Int)(implicit d1: DummyImplicit): Velocity
    Definition Classes
    BaseValue
  6. def *(scale: Double)(implicit d1: DummyImplicit): Velocity
    Definition Classes
    BaseValue
  7. def +(that: BaseValue[Velocity])(implicit d1: DummyImplicit): Velocity
    Definition Classes
    BaseValue
  8. def +-(eps: BaseValue[Velocity])(implicit b: Boundable[Velocity]): Bound[Velocity]
    Definition Classes
    BaseValue
  9. def -(that: BaseValue[Velocity])(implicit d1: DummyImplicit): Velocity
    Definition Classes
    BaseValue
  10. def ->[B](y: B): (Velocity, B)
    Implicit
    This member is added by an implicit conversion from Velocity toArrowAssoc[Velocity] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  11. def /(t: Time): Acceleration
  12. def /(scale: Long)(implicit d1: DummyImplicit): Velocity
    Definition Classes
    BaseValue
  13. def /(scale: Int)(implicit d1: DummyImplicit): Velocity
    Definition Classes
    BaseValue
  14. def /(scale: Double)(implicit d1: DummyImplicit): Velocity
    Definition Classes
    BaseValue
  15. def /(that: BaseValue[Velocity])(implicit d1: DummyImplicit): Double
    Definition Classes
    BaseValue
  16. def <(that: Velocity): Boolean
    Definition Classes
    Ordered
  17. def <=(that: Velocity): Boolean
    Definition Classes
    Ordered
  18. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  19. def >(that: Velocity): Boolean
    Definition Classes
    Ordered
  20. def >=(that: Velocity): Boolean
    Definition Classes
    Ordered
  21. def abs: Velocity
    Definition Classes
    BaseValue
  22. def apply(v: Double): Velocity
    Definition Classes
    VelocityBaseValue
  23. def applyIf(t: Boolean, f: (Velocity) => Velocity): Velocity
    Implicit
    This member is added by an implicit conversion from Velocity toDrxAny[Velocity] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  24. def applyIf(t: (Velocity) => Boolean)(f: (Velocity) => Velocity): Velocity

    better chaining for types

    better chaining for types

    Implicit
    This member is added by an implicit conversion from Velocity toDrxAny[Velocity] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  25. def as(unit: String): Double
  26. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  27. val base: Double
  28. def baseValue: Double
    Definition Classes
    VelocityBaseValue
  29. def compare(that: Velocity): Int
    Definition Classes
    Velocity → Ordered
  30. def compare(that: BaseValue[Velocity]): Int
    Definition Classes
    BaseValue
  31. def compareTo(that: Velocity): Int
    Definition Classes
    Ordered → Comparable
  32. def elementOf(xs: Set[Velocity]): Boolean
    Implicit
    This member is added by an implicit conversion from Velocity toDrxAny[Velocity] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  33. def ensuring(cond: (Velocity) => Boolean, msg: => Any): Velocity
    Implicit
    This member is added by an implicit conversion from Velocity toEnsuring[Velocity] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  34. def ensuring(cond: (Velocity) => Boolean): Velocity
    Implicit
    This member is added by an implicit conversion from Velocity toEnsuring[Velocity] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  35. def ensuring(cond: Boolean, msg: => Any): Velocity
    Implicit
    This member is added by an implicit conversion from Velocity toEnsuring[Velocity] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  36. def ensuring(cond: Boolean): Velocity
    Implicit
    This member is added by an implicit conversion from Velocity toEnsuring[Velocity] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  37. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Velocity toStringFormat[Velocity] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  38. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  39. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  40. def lerp(that: BaseValue[Velocity])(ratio: Double): Velocity
    Definition Classes
    BaseValue
  41. def nice: String
    Definition Classes
    VelocityBaseValue
  42. def noneIf(f: (Velocity) => Boolean): Option[Velocity]
    Implicit
    This member is added by an implicit conversion from Velocity toDrxAny[Velocity] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  43. def optionIf(f: (Velocity) => Boolean): Option[Velocity]

    optionally wrap an object

    optionally wrap an object

    Implicit
    This member is added by an implicit conversion from Velocity toDrxAny[Velocity] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  44. def preApply[B](f: (Velocity) => B): B

    a preApply f => f(a)

    a preApply f => f(a)

    Implicit
    This member is added by an implicit conversion from Velocity toDrxAny[Velocity] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  45. def productElementNames: Iterator[String]
    Definition Classes
    Product
  46. def sideEffect(f: (Velocity) => Unit): Velocity

    side effect filter

    side effect filter

    Implicit
    This member is added by an implicit conversion from Velocity toDrxAny[Velocity] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  47. def someIf(f: (Velocity) => Boolean): Option[Velocity]
    Implicit
    This member is added by an implicit conversion from Velocity toDrxAny[Velocity] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  48. val thisAny: Velocity
    Implicit
    This member is added by an implicit conversion from Velocity toDrxAny[Velocity] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  49. def till(maxArg: Velocity): Bound[Velocity]

    Bound construction since the Range constructor is deprecated

    Bound construction since the Range constructor is deprecated

    Implicit
    This member is added by an implicit conversion from Velocity toBoundOps[Velocity] performed by method DrxBoundOps in cc.drx.predef.Enrich.
    Definition Classes
    BoundOps
  50. def toString(): String
    Definition Classes
    Velocity → Any
  51. def unary_-: Velocity
    Definition Classes
    BaseValue
  52. def ~(that: Velocity)(implicit b: Boundable[Velocity]): Bound[Velocity]
    Definition Classes
    BaseValue
  53. def ~=(that: BaseValue[Velocity])(implicit eps: Eps): Boolean
    Definition Classes
    BaseValue
  54. def ~>(that: BaseValue[Velocity])(implicit b: Boundable[Velocity]): Bound[Velocity]
    Definition Classes
    BaseValue

Shadowed Implicit Value Members

  1. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Velocity toany2stringadd[Velocity] performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (velocity: any2stringadd[Velocity]).+(other)
    Definition Classes
    any2stringadd
  2. def <(that: Velocity): Boolean
    Implicit
    This member is added by an implicit conversion from Velocity toOrdered[Velocity] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (velocity: Ordered[Velocity]).<(that)
    Definition Classes
    Ordered
  3. def <=(that: Velocity): Boolean
    Implicit
    This member is added by an implicit conversion from Velocity toOrdered[Velocity] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (velocity: Ordered[Velocity]).<=(that)
    Definition Classes
    Ordered
  4. def >(that: Velocity): Boolean
    Implicit
    This member is added by an implicit conversion from Velocity toOrdered[Velocity] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (velocity: Ordered[Velocity]).>(that)
    Definition Classes
    Ordered
  5. def >=(that: Velocity): Boolean
    Implicit
    This member is added by an implicit conversion from Velocity toOrdered[Velocity] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (velocity: Ordered[Velocity]).>=(that)
    Definition Classes
    Ordered
  6. def compare(that: Velocity): Int
    Implicit
    This member is added by an implicit conversion from Velocity toOrdered[Velocity] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (velocity: Ordered[Velocity]).compare(that)
    Definition Classes
    Ordered
  7. def compareTo(that: Velocity): Int
    Implicit
    This member is added by an implicit conversion from Velocity toOrdered[Velocity] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (velocity: Ordered[Velocity]).compareTo(that)
    Definition Classes
    Ordered → Comparable

Deprecated Value Members

  1. def ?>(f: (Velocity) => Boolean): Option[Velocity]

    alias for option if

    alias for option if

    Implicit
    This member is added by an implicit conversion from Velocity toDrxAny[Velocity] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
    Annotations
    @deprecated
    Deprecated

    (Since version v0.2.15) to many symbols are hard to undertand

  2. def |>[B](f: (Velocity) => B): B
    Implicit
    This member is added by an implicit conversion from Velocity toDrxAny[Velocity] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
    Annotations
    @deprecated
    Deprecated

    (Since version v0.2.15) use preApply if you must (symbols are concise without concision)

  3. def [B](y: B): (Velocity, B)
    Implicit
    This member is added by an implicit conversion from Velocity toArrowAssoc[Velocity] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from BaseValue[Velocity]

Inherited from Ordered[Velocity]

Inherited from Comparable[Velocity]

Inherited from AnyVal

Inherited from Any

Inherited by implicit conversion orderingToOrdered fromVelocity to Ordered[Velocity]

Inherited by implicit conversion richDrxAny fromVelocity to DrxAny[Velocity]

Inherited by implicit conversion DrxBoundOps fromVelocity to BoundOps[Velocity]

Inherited by implicit conversion any2stringadd fromVelocity to any2stringadd[Velocity]

Inherited by implicit conversion StringFormat fromVelocity to StringFormat[Velocity]

Inherited by implicit conversion Ensuring fromVelocity to Ensuring[Velocity]

Inherited by implicit conversion ArrowAssoc fromVelocity to ArrowAssoc[Velocity]

Ungrouped