final case class Force(base: Double) extends AnyVal with BaseValue[Force] with Product with Serializable
- Source
- units.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Force
- Serializable
- Product
- Equals
- BaseValue
- Ordered
- Comparable
- AnyVal
- Any
Implicitly
- by orderingToOrdered
- by richDrxAny
- by DrxBoundOps
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- def *(scale: Long)(implicit d1: DummyImplicit): Force
- Definition Classes
- BaseValue
- def *(scale: Int)(implicit d1: DummyImplicit): Force
- Definition Classes
- BaseValue
- def *(scale: Double)(implicit d1: DummyImplicit): Force
- Definition Classes
- BaseValue
- def +(that: BaseValue[Force])(implicit d1: DummyImplicit): Force
- Definition Classes
- BaseValue
- def +-(eps: BaseValue[Force])(implicit b: Boundable[Force]): Bound[Force]
- Definition Classes
- BaseValue
- def -(that: BaseValue[Force])(implicit d1: DummyImplicit): Force
- Definition Classes
- BaseValue
- def ->[B](y: B): (Force, B)
- def /(m: Mass): Acceleration
- def /(scale: Long)(implicit d1: DummyImplicit): Force
- Definition Classes
- BaseValue
- def /(scale: Int)(implicit d1: DummyImplicit): Force
- Definition Classes
- BaseValue
- def /(scale: Double)(implicit d1: DummyImplicit): Force
- Definition Classes
- BaseValue
- def /(that: BaseValue[Force])(implicit d1: DummyImplicit): Double
- Definition Classes
- BaseValue
- def <(that: Force): Boolean
- Definition Classes
- Ordered
- def <=(that: Force): Boolean
- Definition Classes
- Ordered
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- def >(that: Force): Boolean
- Definition Classes
- Ordered
- def >=(that: Force): Boolean
- Definition Classes
- Ordered
- def abs: Force
- Definition Classes
- BaseValue
- def apply(v: Double): Force
- def applyIf(t: Boolean, f: (Force) => Force): Force
- Implicit
- This member is added by an implicit conversion from Force toDrxAny[Force] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def applyIf(t: (Force) => Boolean)(f: (Force) => Force): Force
better chaining for types
better chaining for types
- Implicit
- This member is added by an implicit conversion from Force toDrxAny[Force] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def as(unit: String): Double
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val base: Double
- def baseValue: Double
- def compare(that: Force): Int
- Definition Classes
- Force → Ordered
- def compare(that: BaseValue[Force]): Int
- Definition Classes
- BaseValue
- def compareTo(that: Force): Int
- Definition Classes
- Ordered → Comparable
- def elementOf(xs: Set[Force]): Boolean
- Implicit
- This member is added by an implicit conversion from Force toDrxAny[Force] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def ensuring(cond: (Force) => Boolean, msg: => Any): Force
- def ensuring(cond: (Force) => Boolean): Force
- def ensuring(cond: Boolean, msg: => Any): Force
- def ensuring(cond: Boolean): Force
- def formatted(fmtstr: String): String
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def lerp(that: BaseValue[Force])(ratio: Double): Force
- Definition Classes
- BaseValue
- def nice: String
- def noneIf(f: (Force) => Boolean): Option[Force]
- Implicit
- This member is added by an implicit conversion from Force toDrxAny[Force] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def optionIf(f: (Force) => Boolean): Option[Force]
optionally wrap an object
optionally wrap an object
- Implicit
- This member is added by an implicit conversion from Force toDrxAny[Force] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def preApply[B](f: (Force) => B): B
a preApply f => f(a)
a preApply f => f(a)
- Implicit
- This member is added by an implicit conversion from Force toDrxAny[Force] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def sideEffect(f: (Force) => Unit): Force
side effect filter
side effect filter
- Implicit
- This member is added by an implicit conversion from Force toDrxAny[Force] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def someIf(f: (Force) => Boolean): Option[Force]
- Implicit
- This member is added by an implicit conversion from Force toDrxAny[Force] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- val thisAny: Force
- Implicit
- This member is added by an implicit conversion from Force toDrxAny[Force] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def till(maxArg: Force): Bound[Force]
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 Force toBoundOps[Force] performed by method DrxBoundOps in cc.drx.predef.Enrich.
- Definition Classes
- BoundOps
- def toString(): String
- Definition Classes
- Force → Any
- def unary_-: Force
- Definition Classes
- BaseValue
- def ~(that: Force)(implicit b: Boundable[Force]): Bound[Force]
- Definition Classes
- BaseValue
- def ~=(that: BaseValue[Force])(implicit eps: Eps): Boolean
- Definition Classes
- BaseValue
- def ~>(that: BaseValue[Force])(implicit b: Boundable[Force]): Bound[Force]
- Definition Classes
- BaseValue
Shadowed Implicit Value Members
- def +(other: String): String
- Implicit
- This member is added by an implicit conversion from Force toany2stringadd[Force] 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:(force: any2stringadd[Force]).+(other)
- Definition Classes
- any2stringadd
- def <(that: Force): Boolean
- Implicit
- This member is added by an implicit conversion from Force toOrdered[Force] 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:(force: Ordered[Force]).<(that)
- Definition Classes
- Ordered
- def <=(that: Force): Boolean
- Implicit
- This member is added by an implicit conversion from Force toOrdered[Force] 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:(force: Ordered[Force]).<=(that)
- Definition Classes
- Ordered
- def >(that: Force): Boolean
- Implicit
- This member is added by an implicit conversion from Force toOrdered[Force] 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:(force: Ordered[Force]).>(that)
- Definition Classes
- Ordered
- def >=(that: Force): Boolean
- Implicit
- This member is added by an implicit conversion from Force toOrdered[Force] 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:(force: Ordered[Force]).>=(that)
- Definition Classes
- Ordered
- def compare(that: Force): Int
- Implicit
- This member is added by an implicit conversion from Force toOrdered[Force] 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:(force: Ordered[Force]).compare(that)
- Definition Classes
- Ordered
- def compareTo(that: Force): Int
- Implicit
- This member is added by an implicit conversion from Force toOrdered[Force] 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:(force: Ordered[Force]).compareTo(that)
- Definition Classes
- Ordered → Comparable
Deprecated Value Members
- def ?>(f: (Force) => Boolean): Option[Force]
alias for option if
alias for option if
- Implicit
- This member is added by an implicit conversion from Force toDrxAny[Force] 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
- def |>[B](f: (Force) => B): B
- Implicit
- This member is added by an implicit conversion from Force toDrxAny[Force] 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)
- def →[B](y: B): (Force, B)
- Implicit
- This member is added by an implicit conversion from Force toArrowAssoc[Force] 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.