FloatSigned

trait FloatSigned extends Signed[Float] with FloatOrder
trait Order[Float]
trait PartialOrder[Float]
trait Eq[Float]
trait Serializable
trait Signed[Float]
class Object
trait Matchable
class Any

Value members

Concrete methods

override
def abs(a: Float): Float
Definition Classes
Signed
override
def signum(a: Float): Int
Definition Classes
Signed

Inherited methods

def additiveCommutativeMonoid: AdditiveCommutativeMonoid[Float]
Inherited from
Signed
def compare(x: Float, y: Float): Int
Inherited from
FloatOrder
def comparison(x: Float, y: Float): Comparison

Like compare, but returns a cats.kernel.Comparison instead of an Int. Has the benefit of being able to pattern match on, but not as performant.

Like compare, but returns a cats.kernel.Comparison instead of an Int. Has the benefit of being able to pattern match on, but not as performant.

Inherited from
Order
override
def eqv(x: Float, y: Float): Boolean
Definition Classes
FloatOrder -> Order -> PartialOrder -> Eq
Inherited from
FloatOrder
override
def gt(x: Float, y: Float): Boolean
Definition Classes
FloatOrder -> Order -> PartialOrder
Inherited from
FloatOrder
override
def gteqv(x: Float, y: Float): Boolean
Definition Classes
FloatOrder -> Order -> PartialOrder
Inherited from
FloatOrder
def isSignNegative(a: Float): Boolean
Inherited from
Signed
def isSignNonNegative(a: Float): Boolean
Inherited from
Signed
def isSignNonPositive(a: Float): Boolean
Inherited from
Signed
def isSignNonZero(a: Float): Boolean
Inherited from
Signed
def isSignPositive(a: Float): Boolean
Inherited from
Signed
def isSignZero(a: Float): Boolean
Inherited from
Signed
override
def lt(x: Float, y: Float): Boolean
Definition Classes
FloatOrder -> Order -> PartialOrder
Inherited from
FloatOrder
override
def lteqv(x: Float, y: Float): Boolean
Definition Classes
FloatOrder -> Order -> PartialOrder
Inherited from
FloatOrder
override
def max(x: Float, y: Float): Float
Definition Classes
FloatOrder -> Order
Inherited from
FloatOrder
override
def min(x: Float, y: Float): Float
Definition Classes
FloatOrder -> Order
Inherited from
FloatOrder
override
def neqv(x: Float, y: Float): Boolean
Definition Classes
FloatOrder -> Order -> Eq
Inherited from
FloatOrder
def order: Order[Float]
Inherited from
Signed
def partialCompare(x: Float, y: Float): Double
Inherited from
Order
def partialComparison(x: Float, y: Float): Option[Comparison]

Like partialCompare, but returns a cats.kernel.Comparison instead of an Double. Has the benefit of being able to pattern match on, but not as performant.

Like partialCompare, but returns a cats.kernel.Comparison instead of an Double. Has the benefit of being able to pattern match on, but not as performant.

Inherited from
PartialOrder
def pmax(x: Float, y: Float): Option[Float]

Returns Some(x) if x >= y, Some(y) if x < y, otherwise None.

Returns Some(x) if x >= y, Some(y) if x < y, otherwise None.

Inherited from
PartialOrder
def pmin(x: Float, y: Float): Option[Float]

Returns Some(x) if x <= y, Some(y) if x > y, otherwise None.

Returns Some(x) if x <= y, Some(y) if x > y, otherwise None.

Inherited from
PartialOrder
def sign(a: Float): Sign

Returns Zero if a is 0, Positive if a is positive, and Negative is a is negative.

Returns Zero if a is 0, Positive if a is positive, and Negative is a is negative.

Inherited from
Signed
def toOrdering: Ordering[Float]

Convert a Order[A] to a scala.math.Ordering[A] instance.

Convert a Order[A] to a scala.math.Ordering[A] instance.

Inherited from
Order
def tryCompare(x: Float, y: Float): Option[Int]

Result of comparing x with y. Returns None if operands are not comparable. If operands are comparable, returns Some[Int] where the Int sign is:

Result of comparing x with y. Returns None if operands are not comparable. If operands are comparable, returns Some[Int] where the Int sign is:

  • negative iff x < y
  • zero iff x = y
  • positive iff x > y
Inherited from
PartialOrder