Class

cats.data

NonEmptySetOps

Related Doc: package data

Permalink

sealed class NonEmptySetOps[A] extends AnyRef

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NonEmptySetOps
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new NonEmptySetOps(value: NonEmptySet[A])

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def &(as: NonEmptySet[A]): SortedSet[A]

    Permalink

    Alias for intersect

    Alias for intersect

    scala> import cats.data.NonEmptySet
    scala> import cats.implicits._
    scala> val nes = NonEmptySet.of(1, 2, 4, 5)
    scala> nes & NonEmptySet.of(1, 2, 7)
    res0: scala.collection.immutable.SortedSet[Int] = TreeSet(1, 2)
  4. def &~(as: NonEmptySet[A]): SortedSet[A]

    Permalink

    Alias for diff

    Alias for diff

    scala> import cats.data.NonEmptySet
    scala> import cats.implicits._
    scala> val nes = NonEmptySet.of(1, 2, 4, 5)
    scala> nes &~ NonEmptySet.of(1, 2, 7)
    res0: scala.collection.immutable.SortedSet[Int] = TreeSet(4, 5)
  5. def ++(as: NonEmptySet[A]): NonEmptySet[A]

    Permalink

    Alias for union

    Alias for union

    scala> import cats.data.NonEmptySet
    scala> import cats.implicits._
    scala> val nes = NonEmptySet.of(1, 2, 4, 5)
    scala> nes ++ NonEmptySet.of(1, 2, 7)
    res0: cats.data.NonEmptySet[Int] = TreeSet(1, 2, 4, 5, 7)
  6. def -(a: A): SortedSet[A]

    Permalink

    Removes a key from this set, returning a new SortedSet.

  7. def --(as: NonEmptySet[A]): SortedSet[A]

    Permalink

    Alias for diff

    Alias for diff

    scala> import cats.data.NonEmptySet
    scala> import cats.implicits._
    scala> val nes = NonEmptySet.of(1, 2, 4, 5)
    scala> nes -- NonEmptySet.of(1, 2, 7)
    res0: scala.collection.immutable.SortedSet[Int] = TreeSet(4, 5)
  8. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def ===(that: NonEmptySet[A]): Boolean

    Permalink

    Typesafe equality operator.

    Typesafe equality operator.

    This method is similar to == except that it only allows two NonEmptySet[A] values to be compared to each other, and uses equality provided by Eq[_] instances, rather than using the universal equality provided by .equals.

  10. def add(a: A): NonEmptySet[A]

    Permalink

    Adds an element to this set, returning a new NonEmptySet

  11. def apply(a: A): Boolean

    Permalink

    Alias for contains

    Alias for contains

    scala> import cats.data.NonEmptySet
    scala> import cats.implicits._
    scala> val nes = NonEmptySet.of(1, 2, 3, 4, 5)
    scala> nes(3)
    res0: Boolean = true
    scala> nes(7)
    res1: Boolean = false
  12. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def collect[B](pf: PartialFunction[A, B])(implicit B: kernel.Order[B]): SortedSet[B]

    Permalink

    Returns a new SortedSet containing all elements where the result of pf is defined.

  15. def concatMap[B](f: (A) ⇒ NonEmptySet[B])(implicit B: kernel.Order[B]): NonEmptySet[B]

    Permalink

    Map a function over all the elements of this set and concatenate the resulting sets into one.

    Map a function over all the elements of this set and concatenate the resulting sets into one.

    scala> import cats.data.NonEmptySet
    scala> import cats.implicits._
    scala> val nes = NonEmptySet.of(1, 2, 3)
    scala> nes.concatMap(n => NonEmptySet.of(n, n * 4, n * 5))
    res0: cats.data.NonEmptySet[Int] = TreeSet(1, 2, 3, 4, 5, 8, 10, 12, 15)
  16. def contains(a: A): Boolean

    Permalink

    Tests if some element is contained in this set.

  17. def diff(as: NonEmptySet[A]): SortedSet[A]

    Permalink

    Computes the difference of this set and another set.

  18. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  20. def exists(f: (A) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for at least one element of this set.

  21. def filter(p: (A) ⇒ Boolean): SortedSet[A]

    Permalink

    Filters all elements of this set that do not satisfy the given predicate.

  22. def filterNot(p: (A) ⇒ Boolean): SortedSet[A]

    Permalink

    Filters all elements of this set that satisfy the given predicate.

  23. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. def find(f: (A) ⇒ Boolean): Option[A]

    Permalink

    Returns the first value that matches the given predicate.

  25. def foldLeft[B](b: B)(f: (B, A) ⇒ B): B

    Permalink

    Left-associative fold using f.

  26. def foldRight[B](lb: Eval[B])(f: (A, Eval[B]) ⇒ Eval[B]): Eval[B]

    Permalink

    Right-associative fold using f.

  27. def forall(p: (A) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for all elements of this set.

  28. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  29. def groupBy[B](f: (A) ⇒ B)(implicit B: kernel.Order[B]): NonEmptyMap[B, NonEmptySet[A]]

    Permalink

    Groups elements inside this NonEmptySet according to the Order of the keys produced by the given mapping function.

  30. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  31. def head: A

    Permalink

    Returns the first element of this set.

  32. def intersect(as: NonEmptySet[A]): SortedSet[A]

    Permalink

    Computes the intersection between this set and another set.

  33. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  34. def last: A

    Permalink

    Returns the last element of this set.

  35. def length: Int

    Permalink

    Returns the number of elements in this set.

  36. def map[B](f: (A) ⇒ B)(implicit B: kernel.Order[B]): NonEmptySet[B]

    Permalink

    Applies f to all the elements

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

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

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

    Permalink
    Definition Classes
    AnyRef
  40. def reduce[AA >: A](implicit S: kernel.Semigroup[AA]): AA

    Permalink

    Reduce using the Semigroup of A

  41. def reduceLeft(f: (A, A) ⇒ A): A

    Permalink

    Left-associative reduce using f.

  42. def reduceLeftTo[B](f: (A) ⇒ B)(g: (B, A) ⇒ B): B

    Permalink

    Apply f to the "initial element" of this set and lazily combine it with every other value using the given function g.

  43. def reduceRight(f: (A, Eval[A]) ⇒ Eval[A]): Eval[A]

    Permalink

    Left-associative reduce using f.

  44. def reduceRightTo[B](f: (A) ⇒ B)(g: (A, Eval[B]) ⇒ Eval[B]): Eval[B]

    Permalink

    Apply f to the "initial element" of this set and lazily combine it with every other value using the given function g.

  45. def show(implicit A: Show[A]): String

    Permalink

    Typesafe stringification method.

    Typesafe stringification method.

    This method is similar to .toString except that it stringifies values according to Show[_] instances, rather than using the universal .toString method.

  46. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  47. def tail: SortedSet[A]

    Permalink

    Returns all but the first element of this set.

  48. def toNonEmptyList: NonEmptyList[A]

    Permalink

    Converts this set to a NonEmptyList.

    Converts this set to a NonEmptyList.

    scala> import cats.data.NonEmptySet
    scala> import cats.implicits._
    scala> val nes = NonEmptySet.of(1, 2, 3, 4, 5)
    scala> nes.toNonEmptyList
    res0: cats.data.NonEmptyList[Int] = NonEmptyList(1, 2, 3, 4, 5)
  49. def toSortedSet: SortedSet[A]

    Permalink

    Converts this set to a SortedSet

  50. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  51. def union(as: NonEmptySet[A]): NonEmptySet[A]

    Permalink

    Computes the union between this NES and another NES.

  52. val value: NonEmptySet[A]

    Permalink
  53. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  56. def zipWith[B, C](b: NonEmptySet[B])(f: (A, B) ⇒ C)(implicit C: kernel.Order[C]): NonEmptySet[C]

    Permalink

    Zips this NonEmptySet with another NonEmptySet and applies a function for each pair of elements.

    Zips this NonEmptySet with another NonEmptySet and applies a function for each pair of elements.

    scala> import cats.data.NonEmptySet
    scala> import cats.implicits._
    scala> val as = NonEmptySet.of(1, 2, 3)
    scala> val bs = NonEmptySet.of("A", "B", "C")
    scala> as.zipWith(bs)(_ + _)
    res0: cats.data.NonEmptySet[String] = TreeSet(1A, 2B, 3C)
  57. def zipWithIndex: NonEmptySet[(A, Int)]

    Permalink

    Zips this NonEmptySet with its index.

  58. def |(as: NonEmptySet[A]): NonEmptySet[A]

    Permalink

    Alias for union

    Alias for union

    scala> import cats.data.NonEmptySet
    scala> import cats.implicits._
    scala> val nes = NonEmptySet.of(1, 2, 4, 5)
    scala> nes | NonEmptySet.of(1, 2, 7)
    res0: cats.data.NonEmptySet[Int] = TreeSet(1, 2, 4, 5, 7)

Inherited from AnyRef

Inherited from Any

Ungrouped