FoldableOps<F, A> class abstract

Implementers

Constructors

FoldableOps()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

all(bool f(A a)) bool
any(bool f(A a)) bool
concatenate(Monoid<A> mi) → A
concatenateO(Semigroup<A> si) Option<A>
every(bool f(A a)) bool
foldLeft<B>(B z, B f(B previous, A a)) → B
foldLeftWithIndex<B>(B z, B f(B previous, int i, A a)) → B
foldMap<B>(Monoid<B> bMonoid, B f(A a)) → B
foldMapO<B>(Semigroup<B> si, B f(A a)) Option<B>
foldRight<B>(B z, B f(A a, B previous)) → B
foldRightWithIndex<B>(B z, B f(int i, A a, B previous)) → B
intercalate(Monoid<A> mi, A a) → A
length() int
maximum(Order<A> oa) Option<A>
minimum(Order<A> oa) Option<A>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited