object Foldable
- Source
- Foldable.scala
- Alphabetic
- By Inheritance
- Foldable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
trait
FromFoldMap
[F[_]] extends Foldable[F]
Template trait to define
Foldable
in terms offoldMap
.Template trait to define
Foldable
in terms offoldMap
.Example:
new Foldable[Option] with Foldable.FromFoldMap[Option] { def foldMap[A, B](fa: Option[A])(f: A => B)(implicit F: Monoid[B]) = fa match { case Some(a) => f(a) case None => F.zero } }
-
trait
FromFoldr
[F[_]] extends Foldable[F]
Template trait to define
Foldable
in terms offoldr
Template trait to define
Foldable
in terms offoldr
Example:
new Foldable[Option] with Foldable.FromFoldr[Option] { def foldr[A, B](fa: Option[A], z: B)(f: (A) => (=> B) => B) = fa match { case Some(a) => f(a)(z) case None => z } }
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
apply[F[_]](implicit F: Foldable[F]): Foldable[F]
- Annotations
- @inline()
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )