Object/Class

com.twitter.algebird

Max

Related Docs: class Max | package algebird

Permalink

object Max extends MaxInstances with Serializable

Provides a set of operations and typeclass instances needed to use Max instances.

Linear Supertypes
Serializable, Serializable, MaxInstances, LowPriorityMaxInstances, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Max
  2. Serializable
  3. Serializable
  4. MaxInstances
  5. LowPriorityMaxInstances
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def aggregator[T](implicit ord: Ordering[T]): MaxAggregator[T]

    Permalink

    Returns an Aggregator that selects the maximum instance of an ordered type T in the aggregated stream.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. implicit def doubleMonoid: Monoid[Max[Double]] with BoundedSemilattice[Max[Double]]

    Permalink

    Monoid for Max[Double] with zero == Double.MinValue Note: MinValue > NegativeInfinity, but people may be relying on this emitting a non-infinite number.

    Monoid for Max[Double] with zero == Double.MinValue Note: MinValue > NegativeInfinity, but people may be relying on this emitting a non-infinite number. Sadness

    Definition Classes
    MaxInstances
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. implicit def equiv[T](implicit eq: Equiv[T]): Equiv[Max[T]]

    Permalink
    Definition Classes
    LowPriorityMaxInstances
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. implicit def floatMonoid: Monoid[Max[Float]] with BoundedSemilattice[Max[Float]]

    Permalink

    Monoid for Max[Float] with zero == Float.MinValue Note: MinValue > NegativeInfinity, but people may be relying on this emitting a non-infinite number.

    Monoid for Max[Float] with zero == Float.MinValue Note: MinValue > NegativeInfinity, but people may be relying on this emitting a non-infinite number. Sadness

    Definition Classes
    MaxInstances
  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  15. implicit def intMonoid: Monoid[Max[Int]] with BoundedSemilattice[Max[Int]]

    Permalink

    Monoid for Max[Int] with zero == Int.MinValue

    Monoid for Max[Int] with zero == Int.MinValue

    Definition Classes
    MaxInstances
  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. implicit def listMonoid[T](implicit arg0: Ordering[T]): Monoid[Max[List[T]]] with BoundedSemilattice[Max[List[T]]]

    Permalink

    Returns a Monoid instance for Max[List[T]] that compares lists first by length and then element-wise by T, and returns the maximum value.

    Returns a Monoid instance for Max[List[T]] that compares lists first by length and then element-wise by T, and returns the maximum value.

    Definition Classes
    LowPriorityMaxInstances
  18. implicit def longMonoid: Monoid[Max[Long]] with BoundedSemilattice[Max[Long]]

    Permalink

    Monoid for Max[Long] with zero == Long.MinValue

    Monoid for Max[Long] with zero == Long.MinValue

    Definition Classes
    MaxInstances
  19. def maxSemigroup[T](implicit ord: Ordering[T]): Semigroup[T] with Semilattice[T]

    Permalink

    Returns a Semigroup instance with a plus implementation that always returns the maximum T argument.

  20. def monoid[T](zero: ⇒ T)(implicit arg0: Ordering[T]): Monoid[Max[T]] with BoundedSemilattice[Max[T]]

    Permalink

    Returns a Monoid instance for Max[T] that combines instances using Max.max and uses zero for its identity.

    Returns a Monoid instance for Max[T] that combines instances using Max.max and uses zero for its identity.

    zero

    identity of the returned Monoid instance

    Definition Classes
    LowPriorityMaxInstances
    Note

    zero must be <= every element of T for the returned instance to be lawful.

  21. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. implicit def ordering[T](implicit arg0: Ordering[T]): Ordering[Max[T]]

    Permalink
    Definition Classes
    LowPriorityMaxInstances
  25. implicit def semigroup[T](implicit arg0: Ordering[T]): Semigroup[Max[T]] with Semilattice[Max[T]]

    Permalink

    Returns a Semigroup instance for Max[T].

    Returns a Semigroup instance for Max[T]. The plus implementation always returns the maximum Max[T] argument.

    Definition Classes
    LowPriorityMaxInstances
  26. implicit def streamMonoid[T](implicit arg0: Ordering[T]): Monoid[Max[Stream[T]]] with BoundedSemilattice[Max[Stream[T]]]

    Permalink

    Returns a Monoid instance for Max[Stream[T]] that compares lists first by length and then element-wise by T, and returns the maximum value.

    Returns a Monoid instance for Max[Stream[T]] that compares lists first by length and then element-wise by T, and returns the maximum value.

    Definition Classes
    LowPriorityMaxInstances
  27. implicit def stringMonoid: Monoid[Max[String]]

    Permalink

    Monoid for Max[String] with zero == ""

    Monoid for Max[String] with zero == ""

    Definition Classes
    MaxInstances
  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  29. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  30. implicit def vectorMonoid[T](implicit arg0: Ordering[T]): Monoid[Max[Vector[T]]] with BoundedSemilattice[Max[Vector[T]]]

    Permalink

    Returns a Monoid instance for Max[Vector[T]] that compares lists first by length and then element-wise by T, and returns the maximum value.

    Returns a Monoid instance for Max[Vector[T]] that compares lists first by length and then element-wise by T, and returns the maximum value.

    Definition Classes
    LowPriorityMaxInstances
  31. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from MaxInstances

Inherited from LowPriorityMaxInstances

Inherited from AnyRef

Inherited from Any

Ungrouped