ATraversalElementOps

final case class ATraversalElementOps[S, T, A](aTraversal: ATraversal_[S, T, A, A]) extends AnyVal
trait Product
trait Equals
class AnyVal
trait Matchable
class Any

Value members

Concrete methods

def drop(i: Int): ATraversal_[S, T, A, A]

select all elements of an ATraversal_ except first n ones

select all elements of an ATraversal_ except first n ones

def dropWhile(predicate: A => Boolean)(implicit ev0: Applicative[[_] =>> State[Boolean, _$13]]): ATraversal_[S, T, A, A]

drop longest prefix of elements of an ATraversal_ that satisfy a predicate

drop longest prefix of elements of an ATraversal_ that satisfy a predicate

def filterByIndex(predicate: Int => Boolean): ATraversal_[S, T, A, A]

traverse elements of an ATraversal_ whose index satisfy a predicate

traverse elements of an ATraversal_ whose index satisfy a predicate

def partsOf(implicit ev0: Sellable[Function1, [_, _, _] =>> Bazaar[Function1, _$6, _$7, Unit, _$8]]): Lens_[S, T, List[A], List[A]]

convert an ATraversal into a proptics.Lens over a list of the ATraversal's foci

convert an ATraversal into a proptics.Lens over a list of the ATraversal's foci

def single(i: Int): ATraversal_[S, T, A, A]

narrow the focus of an ATraversal_ to a single element

narrow the focus of an ATraversal_ to a single element

def take(i: Int): ATraversal_[S, T, A, A]

select the first n elements of an ATraversal_

select the first n elements of an ATraversal_

def takeWhile(predicate: A => Boolean)(implicit ev0: Applicative[[_] =>> State[Boolean, _$12]]): ATraversal_[S, T, A, A]

take longest prefix of elements of an ATraversal_ that satisfy a predicate

take longest prefix of elements of an ATraversal_ that satisfy a predicate

Inherited methods

Inherited from:
Product