Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion core/src/main/scala/cats/Foldable.scala
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ import scala.annotation.implicitNotFound
* See: [[http://www.cs.nott.ac.uk/~pszgmh/fold.pdf A tutorial on the universality and expressiveness of fold]]
*/
@implicitNotFound("Could not find an instance of Foldable for ${F}")
@typeclass trait Foldable[F[_]] extends UnorderedFoldable[F] with FoldableNFunctions[F] { self =>
@typeclass(excludeParents = List("FoldableNFunctions"))
trait Foldable[F[_]] extends UnorderedFoldable[F] with FoldableNFunctions[F] { self =>

/**
* Left associative fold on 'F' using the function 'f'.
Expand Down