Object/Class

io.chrisdavenport.selection

Selection

Related Docs: class Selection | package selection

Permalink

object Selection extends Serializable

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Selection
  2. Serializable
  3. Serializable
  4. AnyRef
  5. 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. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def deselectAll[F[_], A](s: Selection[F, A, A])(implicit arg0: Functor[F]): Selection[F, A, A]

    Permalink

    Deselect all items in the container

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  9. def exclude[F[_], A](s: Selection[F, A, A])(f: (A) ⇒ Boolean)(implicit arg0: Functor[F]): Selection[F, A, A]

    Permalink

    Remove items which match a predicate to the current selection

  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. implicit def foldableBiFoldableSelection[F[_]](implicit arg0: Foldable[F]): Bifoldable[[β$12$, γ$13$]Selection[F, β$12$, γ$13$]]

    Permalink
  12. implicit def foldableSelection[F[_], C](implicit arg0: Foldable[F]): Foldable[[γ$2$]Selection[F, C, γ$2$]]

    Permalink
  13. def forgetSelection[F[_], A](s: Selection[F, A, A])(implicit arg0: Functor[F]): F[A]

    Permalink

    Drops selection from your functor returning all values (selected or not).

  14. implicit def functorBifunctorSelection[F[_]](implicit arg0: Functor[F]): Bifunctor[[β$8$, γ$9$]Selection[F, β$8$, γ$9$]]

    Permalink
  15. implicit def functorSelection[F[_], B](implicit arg0: Functor[F]): Functor[[γ$0$]Selection[F, B, γ$0$]]

    Permalink
  16. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  17. def getSelected[F[_], B, A](s: Selection[F, B, A])(implicit arg0: Foldable[F]): List[A]

    Permalink

    Collect all selected values into a list.

    Collect all selected values into a list. For more complex operations use foldMap.

  18. def getUnselected[F[_], B, A](s: Selection[F, B, A])(implicit arg0: Foldable[F]): List[B]

    Permalink

    Collect all unselected values into a list.

    Collect all unselected values into a list. For more complex operations use foldMap.

  19. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  20. def include[F[_], A](s: Selection[F, A, A])(f: (A) ⇒ Boolean)(implicit arg0: Functor[F]): Selection[F, A, A]

    Permalink

    Add items which match a predicate to the current selection

  21. def invertSelection[F[_], A, B](s: Selection[F, A, B])(implicit arg0: Functor[F]): Selection[F, B, A]

    Permalink

    Flip the selection, all selected are now unselected and vice versa

  22. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  23. def mapK[F[_], G[_], B, A](s: Selection[F, B, A])(f: ~>[F, G]): Selection[G, B, A]

    Permalink

    Perform a natural transformation over the underlying container of a selectable

  24. def mapSelected[F[_], B, A, C](s: Selection[F, B, A])(f: (A) ⇒ C)(implicit arg0: Functor[F]): Selection[F, B, C]

    Permalink

    Map over selected values.

  25. def mapUnselected[F[_], B, A, C](s: Selection[F, B, A])(f: (B) ⇒ C)(implicit arg0: Functor[F]): Selection[F, C, A]

    Permalink

    Map over unselected values.

  26. def modifySelection[F[_], G[_], B, A, C, D](s: Selection[F, B, A])(f: (F[Either[B, A]]) ⇒ G[Either[C, D]])(implicit arg0: Functor[F]): Selection[G, C, D]

    Permalink

    Modify the underlying representation of a selection

  27. implicit def monadSelection[F[_], B](implicit arg0: Monad[F]): Monad[[γ$6$]Selection[F, B, γ$6$]]

    Permalink
  28. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  29. def newSelection[F[_], A](f: F[A])(implicit arg0: Functor[F]): Selection[F, A, A]

    Permalink

    Create a selection from a functor by selecting all values

  30. def newSelectionB[F[_], B, A](f: F[A])(implicit arg0: Functor[F]): Selection[F, B, A]

    Permalink

    Create a selection from a functor by selecting all values, demands specification of the unselected type.

  31. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  33. def select[F[_], A](s: Selection[F, A, A])(f: (A) ⇒ Boolean)(implicit arg0: Functor[F]): Selection[F, A, A]

    Permalink

    Clear the selection then select only items which match a predicate.

  34. def selectAll[F[_], A](s: Selection[F, A, A])(implicit arg0: Functor[F]): Selection[F, A, A]

    Permalink

    Select all items in the container

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  37. implicit def traversableBiTraverseSelection[F[_]](implicit arg0: Traverse[F]): Bitraverse[[β$16$, γ$17$]Selection[F, β$16$, γ$17$]]

    Permalink
  38. implicit def traversableSelection[F[_], C](implicit arg0: Traverse[F]): Traverse[[γ$4$]Selection[F, C, γ$4$]]

    Permalink
  39. def unify[F[_], A, B, C](s: Selection[F, B, A])(f1: (B) ⇒ C)(f2: (A) ⇒ C)(implicit arg0: Functor[F]): F[C]

    Permalink

    Unify selected and unselected and forget the selection

  40. def unwrap[F[_], B, A](s: Selection[F, B, A]): F[Either[B, A]]

    Permalink

    Function Unwrapping, rather than method

  41. final def wait(): Unit

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

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

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

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped