class Quantitative[A, B] extends ScaleOneWay[A, B]
The most common 1d Scale with a continuous domain and range
- Source
- scale.scala
- Alphabetic
- By Inheritance
- Quantitative
- ScaleOneWay
- AnyRef
- Any
- by richDrxAny
- by DrxBoundOps
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Value Members
- final def %(a: A): B
alias for apply which is a kind of evaluator
alias for apply which is a kind of evaluator
- Definition Classes
- ScaleOneWay
- def apply(a: A): B
- Definition Classes
- Quantitative → ScaleOneWay
- def applyIf(t: Boolean, f: (Quantitative[A, B]) => Quantitative[A, B]): Quantitative[A, B]
- Implicit
- This member is added by an implicit conversion from Quantitative[A, B] toDrxAny[Quantitative[A, B]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def applyIf(t: (Quantitative[A, B]) => Boolean)(f: (Quantitative[A, B]) => Quantitative[A, B]): Quantitative[A, B]
better chaining for types
better chaining for types
- Implicit
- This member is added by an implicit conversion from Quantitative[A, B] toDrxAny[Quantitative[A, B]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def contains(a: A): Boolean
true if the argument can be applied to a domain
true if the argument can be applied to a domain
- Definition Classes
- Quantitative → ScaleOneWay
- val domain: LerpInv[A]
- def elementOf(xs: Set[Quantitative[A, B]]): Boolean
- Implicit
- This member is added by an implicit conversion from Quantitative[A, B] toDrxAny[Quantitative[A, B]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def get(a: A): Option[B]
first check if the argument can be applied to a domain then apply the scale
first check if the argument can be applied to a domain then apply the scale
- Definition Classes
- ScaleOneWay
- def noneIf(f: (Quantitative[A, B]) => Boolean): Option[Quantitative[A, B]]
- Implicit
- This member is added by an implicit conversion from Quantitative[A, B] toDrxAny[Quantitative[A, B]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def optionIf(f: (Quantitative[A, B]) => Boolean): Option[Quantitative[A, B]]
optionally wrap an object
optionally wrap an object
- Implicit
- This member is added by an implicit conversion from Quantitative[A, B] toDrxAny[Quantitative[A, B]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def preApply[B](f: (Quantitative[A, B]) => B): B
a preApply f => f(a)
a preApply f => f(a)
- Implicit
- This member is added by an implicit conversion from Quantitative[A, B] toDrxAny[Quantitative[A, B]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- val range: Lerp[B]
- def sat(a: A): B
- def sideEffect(f: (Quantitative[A, B]) => Unit): Quantitative[A, B]
side effect filter
side effect filter
- Implicit
- This member is added by an implicit conversion from Quantitative[A, B] toDrxAny[Quantitative[A, B]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def someIf(f: (Quantitative[A, B]) => Boolean): Option[Quantitative[A, B]]
- Implicit
- This member is added by an implicit conversion from Quantitative[A, B] toDrxAny[Quantitative[A, B]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def take(N: Int): Iterable[(A, B)]
- val thisAny: Quantitative[A, B]
- Implicit
- This member is added by an implicit conversion from Quantitative[A, B] toDrxAny[Quantitative[A, B]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def till(maxArg: Quantitative[A, B]): Bound[Quantitative[A, B]]
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 Quantitative[A, B] toBoundOps[Quantitative[A, B]] performed by method DrxBoundOps in cc.drx.predef.Enrich.This conversion will take place only if an implicit value of type Boundable[Quantitative[A, B]] is in scope.
- Definition Classes
- BoundOps
- def toString(): String
- Definition Classes
- Quantitative → AnyRef → Any
Deprecated Value Members
- def ?>(f: (Quantitative[A, B]) => Boolean): Option[Quantitative[A, B]]
alias for option if
alias for option if
- Implicit
- This member is added by an implicit conversion from Quantitative[A, B] toDrxAny[Quantitative[A, B]] 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 steps(N: Int): Seq[(A, B)]
- Annotations
- @deprecated
- Deprecated
(Since version v0.2.4) use take(N:Int) for a more scala semantic
- def |>[B](f: (Quantitative[A, B]) => B): B
- Implicit
- This member is added by an implicit conversion from Quantitative[A, B] toDrxAny[Quantitative[A, B]] 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)