Packages

c

cc.drx.Scale

Quantitative

class Quantitative[A, B] extends ScaleOneWay[A, B]

The most common 1d Scale with a continuous domain and range

Source
scale.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Quantitative
  2. ScaleOneWay
  3. AnyRef
  4. Any
Implicitly
  1. by richDrxAny
  2. by DrxBoundOps
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Quantitative(domain: LerpInv[A], range: Lerp[B])

Value Members

  1. 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
  2. def apply(a: A): B
    Definition Classes
    QuantitativeScaleOneWay
  3. 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
  4. 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
  5. 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
    QuantitativeScaleOneWay
  6. val domain: LerpInv[A]
  7. 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
  8. 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
  9. 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
  10. 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
  11. 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
  12. val range: Lerp[B]
  13. def sat(a: A): B
  14. 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
  15. 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
  16. def take(N: Int): Iterable[(A, B)]
  17. 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
  18. 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
  19. def toString(): String
    Definition Classes
    Quantitative → AnyRef → Any

Deprecated Value Members

  1. 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

  2. def steps(N: Int): Seq[(A, B)]
    Annotations
    @deprecated
    Deprecated

    (Since version v0.2.4) use take(N:Int) for a more scala semantic

  3. 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)