scalaz

package scalaz

Scalaz: Type classes and pure functional data structures for Scala.

This package, scalaz, contains:

Type class instances and other functions related to the Scala and Java standard library are in scalaz.scalaz.std

Implicit conversions and wrapper classes that provide a more convenient syntax for accessing the functionality of the library are in scalaz.scalaz.syntax.

Type Classes Index

Data Structures Index

Source
package.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. scalaz
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. final case class -\/[+A](a: A) extends \/[A, Nothing] with Product with Serializable

  2. type :<:[F[_], G[_]] = Inject[F, G]

    scalaz.Inject[F, G]

  3. type :≺:[F[_], G[_]] = Inject[F, G]

    scalaz.Inject[F, G]

  4. type <~[+F[_], -G[_]] = NaturalTransformation[G, F]

    A scalaz.NaturalTransformation[G, F].

  5. sealed abstract class ==>>[A, B] extends AnyRef

  6. type =?>[E, A] = Kleisli[Option, E, A]

  7. type @>[A, B] = LensFamily[A, A, B, B]

  8. type @?>[A, B] = PLensFamily[A, A, B, B]

  9. type @@[+T, Tag] = T with Tagged[Tag]

    Tag a type T with Tag.

    Tag a type T with Tag. The resulting type is a subtype of T.

    The resulting type is used to discriminate between type class instances.

    See also

    scalaz.Tag and scalaz.Tags

    Credit to Miles Sabin for the idea.

  10. abstract class Adjunction[F[_], G[_]] extends AnyRef

    An adjunction formed by two functors F and G such that F is left-adjoint to G.

  11. trait AdjunctionFunctions extends AnyRef

  12. sealed abstract class AdjunctionInstances extends AnyRef

  13. trait Align[F[_]] extends Functor[F]

  14. sealed abstract class Alpha extends Product with Serializable

    An algebraic data type representing the characters 'a' to 'z'

  15. trait AlphaFunctions extends AnyRef

  16. sealed abstract class AlphaInstances extends AnyRef

  17. type Alternative[F[_]] = ApplicativePlus[F]

  18. trait Applicative[F[_]] extends Apply[F]

    Applicative Functor, described in Applicative Programming with Effects

  19. trait ApplicativePlus[F[_]] extends Applicative[F] with PlusEmpty[F]

    scalaz.Applicative combined with scalaz.PlusEmpty.

  20. trait Apply[F[_]] extends Functor[F]

    scalaz.Applicative without point.

  21. trait Arrow[=>:[_, _]] extends Split[=>:] with Profunctor[=>:] with Category[=>:]

    A scalaz.Category supporting all ordinary functions, as well as combining arrows product-wise.

  22. trait BKTreeFunctions extends AnyRef

  23. sealed abstract class BKTreeInstances extends AnyRef

  24. trait BiConstrainedNaturalTransformation[F[_, _], G[_, _], C[_], E[_]] extends AnyRef

    A constrained transformation natural in both sides of a bifunctor

  25. trait BiNaturalTransformation[-F[_, _], +G[_, _]] extends AnyRef

    A function universally quantified over two parameters.

  26. trait Bifoldable[F[_, _]] extends AnyRef

    A type giving rise to two unrelated scalaz.Foldables.

  27. trait Bifunctor[F[_, _]] extends AnyRef

    A type giving rise to two unrelated scalaz.Functors.

  28. final class BijectionT[F[_], G[_], A, B] extends AnyRef

  29. trait BijectionTFunctions extends AnyRef

  30. sealed abstract class BijectionTInstances extends BijectionTInstances0

  31. sealed abstract class BijectionTInstances0 extends AnyRef

  32. trait Bind[F[_]] extends Apply[F]

    An scalaz.Apply functor, where a lifted function can introduce new values _and_ new functor context to be incorporated into the lift context.

  33. trait Bitraverse[F[_, _]] extends Bifunctor[F] with Bifoldable[F]

    A type giving rise to two unrelated scalaz.Traverses.

  34. sealed abstract class CaseInsensitive[A] extends AnyRef

  35. sealed abstract class CaseInsensitiveInstances extends AnyRef

  36. trait Catchable[F[_]] extends AnyRef

    A context in which exceptions can be caught and thrown.

  37. trait Category[=>:[_, _]] extends Compose[=>:]

    scalaz.Compose with identity.

  38. final case class CharSet extends Product with Serializable

    Newtype for strings representing character sets.

  39. trait CharSetFunctions extends AnyRef

  40. trait Choice[=>:[_, _]] extends Category[=>:]

  41. trait Cobind[F[_]] extends Functor[F]

  42. abstract class Codensity[F[_], A] extends AnyRef

  43. sealed abstract class CodensityInstances extends AnyRef

  44. final case class Cofree[S[_], A](head: A, tail: S[Cofree[S, A]])(implicit S: Functor[S]) extends Product with Serializable

    A cofree comonad for some functor S, i.

  45. trait CofreeFunctions extends AnyRef

  46. sealed abstract class CofreeInstances extends AnyRef

  47. trait Cohoist[F[_[_], _]] extends ComonadTrans[F]

  48. final case class Cokleisli[F[_], A, B](run: (F[A]) ⇒ B) extends Product with Serializable

  49. trait CokleisliFunctions extends AnyRef

  50. sealed abstract class CokleisliInstances extends CokleisliInstances0

  51. sealed abstract class CokleisliInstances0 extends AnyRef

  52. trait Comonad[F[_]] extends Cobind[F]

  53. trait ComonadStore[F[_, _], S] extends Comonad[[x]F[S, x]]

  54. trait ComonadTrans[F[_[_], _]] extends AnyRef

  55. trait Compose[=>:[_, _]] extends AnyRef

  56. trait ConstrainedNaturalTransformation[F[_], G[_], E[_]] extends AnyRef

    A constrained natural transformation

  57. type Cont[R, A] = IndexedContsT[scalaz.Id.Id, scalaz.Id.Id, R, R, A]

  58. type ContT[M[_], R, A] = IndexedContsT[scalaz.Id.Id, M, R, R, A]

  59. trait Contravariant[F[_]] extends InvariantFunctor[F]

    Contravariant functors.

  60. type Conts[W[_], R, A] = IndexedContsT[W, scalaz.Id.Id, R, R, A]

  61. type ContsT[W[_], M[_], R, A] = IndexedContsT[W, M, R, R, A]

  62. final case class Coproduct[F[_], G[_], A](run: \/[F[A], G[A]]) extends Product with Serializable

    F on the left, and G on the right, of scalaz.\/.

  63. trait CoproductFunctions extends AnyRef

  64. sealed abstract class CoproductInstances extends CoproductInstances0

  65. sealed abstract class CoproductInstances0 extends CoproductInstances1

  66. sealed abstract class CoproductInstances1 extends CoproductInstances2

  67. sealed abstract class CoproductInstances2 extends CoproductInstances3

  68. sealed abstract class CoproductInstances3 extends AnyRef

  69. final case class Cord(self: FingerTree[Int, String]) extends Product with Serializable

    A Cord is a purely functional data structure for efficiently storing and manipulating Strings that are potentially very long.

  70. abstract class Corepresentable[F[_], X] extends AnyRef

    Corepresentable functors

  71. trait Cozip[F[_]] extends AnyRef

  72. final class DList[A] extends AnyRef

    Difference lists: a data structure for O(1) append on lists.

  73. trait DListFunctions extends AnyRef

  74. sealed abstract class DListInstances extends AnyRef

  75. trait DiNaturalTransformation[F[_, _], G[_, _]] extends AnyRef

  76. sealed abstract class Diev[A] extends AnyRef

    Implementation of a Discrete Interval Encoding Tree http://web.engr.oregonstate.edu/~erwig/diet/ that is actually implemented using a Vector and is balanced at all times as a result.

  77. trait DievFunctions extends DievImplementation

  78. trait DievImplementation extends AnyRef

  79. sealed abstract class DievInstances extends DievImplementation

  80. sealed abstract class Digit extends Product with Serializable

    An algebraic data type representing the digits 0 - 9

  81. trait DigitFunctions extends AnyRef

  82. sealed abstract class DigitInstances extends AnyRef

  83. trait DisjunctionFunctions extends AnyRef

  84. sealed abstract class DisjunctionInstances extends DisjunctionInstances0

  85. sealed abstract class DisjunctionInstances0 extends DisjunctionInstances1

  86. sealed abstract class DisjunctionInstances1 extends DisjunctionInstances2

  87. sealed abstract class DisjunctionInstances2 extends DisjunctionInstances3

  88. sealed abstract class DisjunctionInstances3 extends AnyRef

  89. trait Distributive[F[_]] extends Functor[F]

    Dual of scalaz.Traverse.

  90. trait DistributiveFunctions extends AnyRef

  91. sealed abstract class DualInstances extends DualInstances0

  92. sealed abstract class DualInstances0 extends AnyRef

  93. sealed abstract class Either3[+A, +B, +C] extends Product with Serializable

  94. final case class EitherT[F[_], A, B](run: F[\/[A, B]]) extends Product with Serializable

    Represents a computation of type F[A \/ B].

  95. trait EitherTFunctions extends AnyRef

  96. sealed abstract class EitherTInstances extends EitherTInstances0

  97. sealed abstract class EitherTInstances0 extends EitherTInstances1

  98. sealed abstract class EitherTInstances1 extends AnyRef

  99. final case class Endo[A](run: (A) ⇒ A) extends Product with Serializable

    Endomorphisms.

  100. trait EndoFunctions extends AnyRef

  101. sealed abstract class EndoInstances extends AnyRef

  102. final case class Endomorphic[=>:[_, _], A](run: =>:[A, A]) extends Product with Serializable

    Endomorphisms have special properties among arrows, so are captured in this newtype.

  103. trait EndomorphicFunctions extends AnyRef

  104. sealed abstract class EndomorphicInstances extends EndomorphicInstances0

  105. sealed abstract class EndomorphicInstances0 extends AnyRef

  106. trait Enum[F] extends Order[F]

    An scalaz.Orderable with discrete values.

  107. sealed abstract class EphemeralStream[A] extends AnyRef

    Like scala.collection.immutable.Stream, but doesn't save computed values.

  108. trait EphemeralStreamFunctions extends AnyRef

  109. sealed abstract class EphemeralStreamInstances extends AnyRef

  110. trait Equal[F] extends AnyRef

    A type safe alternative to universal equality (scala.Any#==).

  111. final case class Failure[E](e: E) extends Validation[E, Nothing] with Product with Serializable

  112. sealed abstract class Finger[V, A] extends AnyRef

  113. sealed abstract class FingerTree[V, A] extends AnyRef

    Finger trees with leaves of type A and Nodes that are annotated with type V.

  114. trait FingerTreeFunctions extends AnyRef

  115. sealed abstract class FingerTreeInstances extends AnyRef

  116. type FirstOf[A] = A with Tagged[FirstVal]

  117. type FirstOption[A] = Option[A] with Tagged[First]

  118. trait FoldCase[A] extends AnyRef

  119. sealed abstract class FoldCaseInstances extends AnyRef

  120. trait Foldable[F[_]] extends AnyRef

    A type parameter implying the ability to extract zero or more values of that type.

  121. trait Foldable1[F[_]] extends Foldable[F]

    A scalaz.Foldable where foldMap is total over semigroups.

  122. trait Forall[P[_]] extends AnyRef

    A universally quantified value

  123. trait Foralls extends AnyRef

  124. case class Four[V, A](v: V, a1: A, a2: A, a3: A, a4: A)(implicit r: Reducer[A, V]) extends Finger[V, A] with Product with Serializable

  125. sealed abstract class Free[S[_], A] extends AnyRef

    A free operational monad for some functor S.

  126. trait FreeFunctions extends AnyRef

  127. sealed abstract class FreeInstances extends TrampolineInstances with SinkInstances with SourceInstances

  128. trait Functor[F[_]] extends InvariantFunctor[F]

    Functors, covariant by nature if not by Scala type.

  129. trait Generator[C[_]] extends AnyRef

    A Generator[C] is a container of elements, and which knows how to efficiently apply a scalaz.Reducer to extract an answer by combining elements.

  130. trait Generators extends AnyRef

  131. sealed abstract class Heap[A] extends AnyRef

    An efficient, asymptotically optimal, implementation of priority queues extended with support for efficient size.

  132. trait HeapFunctions extends AnyRef

  133. sealed abstract class HeapInstances extends AnyRef

  134. trait Hoist[F[_[_], _]] extends MonadTrans[F]

  135. type IRWS[-R, W, -S1, S2, A] = IndexedReaderWriterStateT[scalaz.Id.Id, R, W, S1, S2, A]

  136. type IRWST[F[_], -R, W, -S1, S2, A] = IndexedReaderWriterStateT[F, R, W, S1, S2, A]

  137. trait IdInstances extends AnyRef

    Mixed into object Id in the package object scalaz.

  138. final case class IdT[F[_], A](run: F[A]) extends Product with Serializable

  139. trait IdTFunctions extends AnyRef

  140. sealed abstract class IdTInstances extends IdTInstances0

  141. sealed abstract class IdTInstances0 extends IdTInstances1

  142. sealed abstract class IdTInstances1 extends IdTInstances2

  143. sealed abstract class IdTInstances2 extends IdTInstances3

  144. sealed abstract class IdTInstances3 extends AnyRef

  145. sealed abstract class ImmutableArray[+A] extends AnyRef

    An immutable wrapper for arrays

  146. trait ImmutableArrayFunctions extends AnyRef

  147. final class IndSeq[A] extends AnyRef

    Indexed sequences, based on scalaz.FingerTree

  148. type IndexedCont[R, O, A] = IndexedContsT[scalaz.Id.Id, scalaz.Id.Id, R, O, A]

  149. type IndexedContT[M[_], R, O, A] = IndexedContsT[scalaz.Id.Id, M, R, O, A]

  150. type IndexedConts[W[_], R, O, A] = IndexedContsT[W, scalaz.Id.Id, R, O, A]

  151. final class IndexedContsT[W[_], M[_], R, O, A] extends AnyRef

  152. trait IndexedContsTFunctions extends AnyRef

  153. abstract class IndexedContsTInstances extends IndexedContsTInstances0

  154. sealed abstract class IndexedContsTInstances0 extends AnyRef

  155. type IndexedReaderWriterState[-R, W, -S1, S2, A] = IndexedReaderWriterStateT[scalaz.Id.Id, R, W, S1, S2, A]

  156. sealed abstract class IndexedReaderWriterStateT[F[_], -R, W, -S1, S2, A] extends AnyRef

    A monad transformer stack yielding (R, S1) => F[(W, A, S2)].

  157. sealed abstract class IndexedReaderWriterStateTInstances extends AnyRef

  158. type IndexedState[-S1, S2, A] = IndexedStateT[scalaz.Id.Id, S1, S2, A]

  159. trait IndexedStateFunctions extends AnyRef

  160. trait IndexedStateT[F[_], -S1, S2, A] extends AnyRef

  161. trait IndexedStateTFunctions extends AnyRef

  162. sealed abstract class IndexedStateTInstances extends IndexedStateTInstances0

  163. sealed abstract class IndexedStateTInstances0 extends IndexedStateTInstances1

  164. sealed abstract class IndexedStateTInstances1 extends IndexedStateTInstances2

  165. sealed abstract class IndexedStateTInstances2 extends AnyRef

  166. type IndexedStore[I, A, B] = IndexedStoreT[scalaz.Id.Id, I, A, B]

  167. final case class IndexedStoreT[F[_], +I, A, B](run: (F[(A) ⇒ B], I)) extends Product with Serializable

  168. trait IndexedStoreTFunctions extends AnyRef

  169. sealed abstract class IndexedStoreTInstances extends IndexedStoreTInstances0

  170. sealed abstract class IndexedStoreTInstances0 extends IndexedStoreTInstances1

  171. sealed abstract class IndexedStoreTInstances1 extends IndexedStoreTInstances2

  172. sealed abstract class IndexedStoreTInstances2 extends AnyRef

  173. sealed abstract class Inject[F[_], G[_]] extends AnyRef

    Inject type class as described in "Data types a la carte" (Swierstra 2008).

  174. trait InjectFunctions extends AnyRef

  175. sealed abstract class InjectInstances extends AnyRef

  176. case class Injective[T[_]]() extends Product with Serializable

    Given Injective[Foo]: If type Foo[A] = Foo[B] then A ~ B

  177. case class Injective2[T[_, _]]() extends Product with Serializable

  178. case class Injective3[T[_, _, _]]() extends Product with Serializable

  179. case class Injective4[T[_, _, _, _]]() extends Product with Serializable

  180. case class Injective5[T[_, _, _, _, _]]() extends Product with Serializable

  181. final class InsertionMap[K, V] extends AnyRef

    Returns a list in order of key insertion.

  182. trait InsertionMapFunctions extends AnyRef

  183. sealed abstract class InsertionMapInstances extends AnyRef

  184. trait InvariantFunctor[F[_]] extends AnyRef

    Unary type constructor that supports an xmap operation that converts an F[A] to an F[B] given two functions, A => B and B => A.

  185. trait IsEmpty[F[_]] extends PlusEmpty[F]

    Typeclass that permits testing whether some type with an empty representation is in fact empty.

  186. trait IsomorphismApplicative[F[_], G[_]] extends Applicative[F] with IsomorphismApply[F, G]

  187. trait IsomorphismApplicativePlus[F[_], G[_]] extends ApplicativePlus[F] with IsomorphismEmpty[F, G] with IsomorphismApplicative[F, G]

  188. trait IsomorphismApply[F[_], G[_]] extends Apply[F] with IsomorphismFunctor[F, G]

  189. trait IsomorphismBifunctor[F[_, _], G[_, _]] extends Bifunctor[F]

  190. trait IsomorphismBind[F[_], G[_]] extends Bind[F] with IsomorphismApply[F, G]

  191. trait IsomorphismBitraverse[F[_, _], G[_, _]] extends Bitraverse[F] with IsomorphismBifunctor[F, G]

  192. trait IsomorphismCobind[F[_], G[_]] extends Cobind[F] with IsomorphismFunctor[F, G]

  193. trait IsomorphismComonad[F[_], G[_]] extends Comonad[F] with IsomorphismCobind[F, G]

  194. trait IsomorphismContravariant[F[_], G[_]] extends Contravariant[F]

  195. trait IsomorphismEmpty[F[_], G[_]] extends PlusEmpty[F] with IsomorphismPlus[F, G]

  196. trait IsomorphismEqual[F, G] extends Equal[F]

  197. trait IsomorphismFoldable[F[_], G[_]] extends Foldable[F]

  198. trait IsomorphismFunctor[F[_], G[_]] extends Functor[F]

  199. trait IsomorphismMonad[F[_], G[_]] extends Monad[F] with IsomorphismApplicative[F, G] with IsomorphismBind[F, G]

  200. trait IsomorphismMonadPlus[F[_], G[_]] extends MonadPlus[F] with IsomorphismEmpty[F, G] with IsomorphismMonad[F, G]

  201. trait IsomorphismMonoid[F, G] extends Monoid[F] with IsomorphismSemigroup[F, G]

  202. trait IsomorphismOrder[F, G] extends Order[F]

  203. trait IsomorphismPlus[F[_], G[_]] extends Plus[F]

  204. trait IsomorphismSemigroup[F, G] extends Semigroup[F]

  205. trait IsomorphismShow[F, G] extends Show[F]

  206. trait IsomorphismTraverse[F[_], G[_]] extends Traverse[F] with IsomorphismFoldable[F, G] with IsomorphismFunctor[F, G]

  207. sealed abstract class Isomorphisms extends IsomorphismsLow0

  208. sealed abstract class IsomorphismsLow0 extends IsomorphismsLow1

  209. sealed abstract class IsomorphismsLow1 extends AnyRef

  210. final case class Kleisli[M[_], A, B](run: (A) ⇒ M[B]) extends Product with Serializable

    Represents a function A => M[B].

  211. trait KleisliFunctions extends AnyRef

  212. abstract class KleisliInstances extends KleisliInstances0

  213. sealed abstract class KleisliInstances0 extends KleisliInstances1

  214. sealed abstract class KleisliInstances1 extends KleisliInstances2

  215. sealed abstract class KleisliInstances2 extends KleisliInstances3

  216. sealed abstract class KleisliInstances3 extends KleisliInstances4

  217. sealed abstract class KleisliInstances4 extends KleisliInstances5

  218. sealed abstract class KleisliInstances5 extends KleisliInstances6

  219. sealed abstract class KleisliInstances6 extends KleisliInstances7

  220. sealed abstract class KleisliInstances7 extends KleisliInstances8

  221. sealed abstract class KleisliInstances8 extends AnyRef

  222. trait Konst[A] extends AnyRef

  223. type LastOf[A] = A with Tagged[LastVal]

  224. type LastOption[A] = Option[A] with Tagged[Last]

  225. sealed abstract class LazyEither[+A, +B] extends AnyRef

    scala.Either, but with a value by name.

  226. trait LazyEitherFunctions extends AnyRef

  227. sealed abstract class LazyEitherInstances extends AnyRef

  228. final case class LazyEitherT[F[_], A, B](run: F[LazyEither[A, B]]) extends Product with Serializable

  229. trait LazyEitherTFunctions extends AnyRef

  230. sealed abstract class LazyEitherTInstances extends LazyEitherTInstances0

  231. sealed abstract class LazyEitherTInstances0 extends LazyEitherTInstances1

  232. sealed abstract class LazyEitherTInstances1 extends AnyRef

  233. sealed abstract class LazyOption[+A] extends Product with Serializable

    scala.Option, but with a value by name.

  234. trait LazyOptionFunctions extends AnyRef

  235. sealed abstract class LazyOptionInstances extends AnyRef

  236. final case class LazyOptionT[F[_], A](run: F[LazyOption[A]]) extends Product with Serializable

  237. trait LazyOptionTFunctions extends AnyRef

  238. sealed abstract class LazyOptionTInstances extends LazyOptionTInstances0

  239. sealed abstract class LazyOptionTInstances0 extends LazyOptionTInstances1

  240. sealed abstract class LazyOptionTInstances1 extends LazyOptionTInstances2

  241. sealed abstract class LazyOptionTInstances2 extends AnyRef

  242. sealed abstract class LazyTuple2[A, B] extends AnyRef

    scala.Tuple2, but with values by name.

  243. sealed abstract class LazyTuple2Instances extends LazyTuple2Instances0

  244. sealed abstract class LazyTuple2Instances0 extends AnyRef

  245. sealed abstract class LazyTuple3[A, B, C] extends AnyRef

    scala.Tuple3, but with values by name.

  246. sealed abstract class LazyTuple3Instances extends LazyTuple3Instances0

  247. sealed abstract class LazyTuple3Instances0 extends AnyRef

  248. sealed abstract class LazyTuple4[A, B, C, D] extends AnyRef

    scala.Tuple4, but with values by name.

  249. sealed abstract class LazyTuple4Instances extends LazyTuple4Instances0

  250. sealed abstract class LazyTuple4Instances0 extends AnyRef

  251. trait LazyTupleFunctions extends AnyRef

  252. final case class Left3[+A, +B, +C](a: A) extends Either3[A, B, C] with Product with Serializable

  253. sealed abstract class Leibniz[-L, +H >: L, A >: L <: H, B >: L <: H] extends AnyRef

    Leibnizian equality: a better =:=

  254. trait LeibnizFunctions extends AnyRef

  255. sealed abstract class LeibnizInstances extends AnyRef

  256. type Lens[A, B] = LensFamily[A, A, B, B]

    A lens that doesn't transform the type of the record.

  257. sealed abstract class LensFamily[A1, A2, B1, B2] extends AnyRef

    A Lens Family, offering a purely functional means to access and retrieve a field transitioning from type B1 to type B2 in a record simultaneously transitioning from type A1 to type A2.

  258. trait LensFamilyFunctions extends AnyRef

  259. trait LensFunctions extends LensFamilyFunctions

  260. abstract class LensInstances extends LensInstances0

  261. sealed abstract class LensInstances0 extends AnyRef

  262. sealed abstract class Liskov[-A, +B] extends AnyRef

    Liskov substitutability: A better <:<

  263. trait LiskovFunctions extends AnyRef

  264. sealed abstract class LiskovInstances extends AnyRef

  265. final case class ListT[M[_], A](underlying: M[List[A]]) extends Product with Serializable

    ListT monad transformer.

  266. sealed abstract class ListTInstances extends ListTInstances1

  267. sealed abstract class ListTInstances1 extends ListTInstances2

  268. sealed abstract class ListTInstances2 extends AnyRef

  269. trait MapFunctions extends AnyRef

  270. sealed abstract class MapInstances extends AnyRef

  271. type MaxOf[A] = A with Tagged[MaxVal]

  272. type MaxOption[A] = Option[A] with Tagged[Max]

  273. sealed trait Memo[K, V] extends AnyRef

    A function memoization strategy.

  274. trait MemoFunctions extends AnyRef

  275. sealed abstract class MemoInstances extends AnyRef

  276. final case class Middle3[+A, +B, +C](b: B) extends Either3[A, B, C] with Product with Serializable

  277. type MinOf[A] = A with Tagged[MinVal]

  278. type MinOption[A] = Option[A] with Tagged[Min]

  279. trait Monad[F[_]] extends Applicative[F] with Bind[F]

    Monad, an scalaz.Applicative that also supports scalaz.Bind, circumscribed by the monad laws.

  280. trait MonadListen[F[_, _], W] extends MonadTell[F, W]

  281. trait MonadPartialOrder[G[_], F[_]] extends NaturalTransformation[F, G]

    This trait establishes a partial order among monads.

  282. trait MonadPartialOrderFunctions extends MonadPartialOrderFunctions1

  283. sealed trait MonadPartialOrderFunctions1 extends AnyRef

  284. trait MonadPlus[F[_]] extends Monad[F] with ApplicativePlus[F]

  285. trait MonadReader[F[_, _], S] extends Monad[[x]F[S, x]]

  286. trait MonadState[F[_, _], S] extends Monad[[x]F[S, x]]

    The class of monads supporting the operations of scalaz.State.

  287. trait MonadTell[F[_, _], W] extends Monad[[α]F[W, α]]

    The class of monads supporting write operations

  288. trait MonadTrans[F[_[_], _]] extends AnyRef

    Class of monad transformers.

  289. trait Monoid[F] extends Semigroup[F]

    Provides an identity element (zero) to the binary append operation in scalaz.Semigroup, subject to the monoid laws.

  290. sealed abstract class Name[+A] extends AnyRef

    Call by name

  291. trait NaturalTransformation[-F[_], +G[_]] extends AnyRef

    A universally quantified function, usually written as F ~> G, for symmetry with A => B.

  292. trait NaturalTransformations extends AnyRef

  293. sealed abstract class Need[+A] extends Name[A]

    Call by need

  294. sealed abstract class Node[V, A] extends AnyRef

  295. final class NonEmptyList[+A] extends AnyRef

    A singly-linked list that is guaranteed to be non-empty.

  296. trait NonEmptyListFunctions extends AnyRef

  297. sealed abstract class NonEmptyListInstances extends NonEmptyListInstances0

  298. sealed abstract class NonEmptyListInstances0 extends AnyRef

  299. trait Nondeterminism[F[_]] extends Monad[F]

    A context supporting nondeterministic choice.

  300. final class NullArgument[A, B] extends AnyRef

  301. trait NullArgumentFunctions extends AnyRef

  302. sealed abstract class NullArgumentInstances extends NullArgumentInstances0

  303. sealed abstract class NullArgumentInstances0 extends AnyRef

  304. final class NullResult[A, B] extends AnyRef

  305. trait NullResultFunctions extends AnyRef

  306. sealed abstract class NullResultInstances extends NullResultInstances0

  307. sealed abstract class NullResultInstances0 extends AnyRef

  308. case class One[V, A](v: V, a1: A)(implicit r: Reducer[A, V]) extends Finger[V, A] with Product with Serializable

  309. final case class OneAnd[F[_], A](head: A, tail: F[A]) extends Product with Serializable

  310. trait OneAndFunctions extends AnyRef

  311. sealed abstract class OneAndInstances extends OneAndInstances0

  312. sealed abstract class OneAndInstances0 extends OneAndInstances1

  313. sealed abstract class OneAndInstances1 extends OneAndInstances2

  314. sealed abstract class OneAndInstances2 extends OneAndInstances3

  315. sealed abstract class OneAndInstances3 extends OneAndInstances4

  316. sealed abstract class OneAndInstances4 extends OneAndInstances5

  317. sealed abstract class OneAndInstances5 extends AnyRef

  318. final case class OneOr[F[_], A](run: \/[F[A], A]) extends Product with Serializable

  319. trait OneOrFunctions extends AnyRef

  320. sealed abstract class OneOrInstances extends OneOrInstances0

  321. sealed abstract class OneOrInstances0 extends OneOrInstances1

  322. sealed abstract class OneOrInstances1 extends OneOrInstances2

  323. sealed abstract class OneOrInstances2 extends OneOrInstances3

  324. sealed abstract class OneOrInstances3 extends OneOrInstances4

  325. sealed abstract class OneOrInstances4 extends OneOrInstances5

  326. sealed abstract class OneOrInstances5 extends OneOrInstances6

  327. sealed abstract class OneOrInstances6 extends AnyRef

  328. final case class OptionT[F[_], A](run: F[Option[A]]) extends Product with Serializable

    OptionT monad transformer.

  329. trait OptionTFunctions extends AnyRef

  330. sealed abstract class OptionTInstances extends OptionTInstances0

  331. sealed abstract class OptionTInstances0 extends OptionTInstances1

  332. sealed abstract class OptionTInstances1 extends OptionTInstances2

  333. sealed abstract class OptionTInstances2 extends OptionTInstances3

  334. sealed abstract class OptionTInstances3 extends AnyRef

  335. trait Optional[F[_]] extends AnyRef

    Abstraction over a container/context which may or may not provide a value.

  336. sealed abstract class OrdSeq[A] extends Ops[FingerTree[LastOption[A], A]]

    Ordered sequences, based on scalaz.FingerTree

  337. trait Order[F] extends Equal[F]

    Safer version of scala.math.Ordering.

  338. sealed abstract class Ordering extends AnyRef

    A ternary marker of how two values relate in an ordering.

  339. trait OrderingFunctions extends AnyRef

  340. sealed abstract class OrderingInstances extends AnyRef

  341. type PIndexedState[-S1, S2, A] = IndexedStateT[scalaz.Id.Id, S1, S2, Option[A]]

  342. type PIndexedStateT[F[_], -S1, S2, A] = IndexedStateT[F, S1, S2, Option[A]]

  343. type PLens[A, B] = PLensFamily[A, A, B, B]

    A partial lens that doesn't transform the type of the record.

  344. sealed abstract class PLensFamily[A1, A2, B1, B2] extends AnyRef

    Partial Lens Families, offering a purely functional means to access and retrieve an optional field transitioning from type B1 to type B2 in a record that is simultaneously transitioning from type A1 to type A2.

  345. trait PLensFamilyFunctions extends PLensInstances

  346. trait PLensFunctions extends PLensInstances with PLensFamilyFunctions

  347. abstract class PLensInstances extends AnyRef

  348. type PState[S, A] = IndexedStateT[scalaz.Id.Id, S, S, Option[A]]

  349. type PStateT[F[_], S, A] = IndexedStateT[F, S, S, Option[A]]

  350. trait Plus[F[_]] extends AnyRef

    Universally quantified scalaz.Semigroup.

  351. trait PlusEmpty[F[_]] extends Plus[F]

    Universally quantified scalaz.Monoid.

  352. trait Profunctor[=>:[_, _]] extends AnyRef

    Profunctors are covariant on the right and contravariant on the left.

  353. type RWS[-R, W, S, A] = IndexedReaderWriterStateT[scalaz.Id.Id, R, W, S, S, A]

  354. type RWST[F[_], -R, W, S, A] = IndexedReaderWriterStateT[F, R, W, S, S, A]

  355. case class Ranked[A](rank: Int, value: A) extends Product with Serializable

  356. type Reader[E, A] = Kleisli[scalaz.Id.Id, E, A]

  357. type ReaderT[F[_], E, A] = Kleisli[F, E, A]

  358. type ReaderWriterState[-R, W, S, A] = IndexedReaderWriterStateT[scalaz.Id.Id, R, W, S, S, A]

  359. type ReaderWriterStateT[F[_], -R, W, S, A] = IndexedReaderWriterStateT[F, R, W, S, S, A]

  360. trait ReaderWriterStateTFunctions extends AnyRef

  361. abstract class ReaderWriterStateTInstances extends IndexedReaderWriterStateTInstances

  362. sealed abstract class Reducer[C, M] extends AnyRef

    A Reducer[C,M] is a scalaz.Monoid[M] that maps values of type C through unit to values of type M.

  363. trait ReducerFunctions extends AnyRef

  364. sealed abstract class ReducerInstances extends AnyRef

  365. abstract class Representable[F[_], X] extends AnyRef

    Representable functors, that is to say, those with isomorphisms to and from [a](X => a).

  366. sealed abstract class RepresentableInstances extends AnyRef

  367. final case class Right3[+A, +B, +C](c: C) extends Either3[A, B, C] with Product with Serializable

  368. sealed class Rope[A] extends Ops[FingerTreeIntPlus[ImmutableArray[A]]]

    Ropes or 'heavyweight Strings' are an alternative to Strings.

  369. final class RopeBuilder[A] extends Builder[A, Rope[A]]

  370. sealed class RopeCharW extends Ops[Rope[Char]]

  371. trait Semigroup[F] extends AnyRef

    An associative binary operation, circumscribed by type and the semigroup laws.

  372. trait Show[F] extends AnyRef

    A typeclass for conversion to textual representation, done via scalaz.Cord for efficiency.

  373. sealed trait SinkInstances extends AnyRef

  374. sealed trait SourceInstances extends AnyRef

  375. trait Split[=>:[_, _]] extends Compose[=>:]

    A scalaz.Compose (semigroupoid) permitting products.

  376. type State[S, A] = IndexedStateT[scalaz.Id.Id, S, S, A]

    A state transition, representing a function S => (A, S).

  377. trait StateFunctions extends IndexedStateFunctions

  378. type StateT[F[_], S, A] = IndexedStateT[F, S, S, A]

  379. trait StateTFunctions extends IndexedStateTFunctions

  380. abstract class StateTInstances extends StateTInstances0

  381. sealed abstract class StateTInstances0 extends StateTInstances1

  382. sealed abstract class StateTInstances1 extends IndexedStateTInstances

  383. type Store[A, B] = IndexedStoreT[scalaz.Id.Id, A, A, B]

  384. type StoreT[F[_], A, B] = IndexedStoreT[F, A, A, B]

  385. trait StoreTFunctions extends IndexedStoreTFunctions

  386. abstract class StoreTInstances extends StoreTInstances0

  387. sealed abstract class StoreTInstances0 extends StoreTInstances1

  388. sealed abstract class StoreTInstances1 extends StoreTInstances2

  389. sealed abstract class StoreTInstances2 extends IndexedStoreTInstances

  390. sealed class StreamT[M[_], A] extends AnyRef

    StreamT monad transformer.

  391. sealed abstract class StreamTInstances extends StreamTInstances0

  392. sealed abstract class StreamTInstances0 extends AnyRef

  393. final case class Success[A](a: A) extends Validation[Nothing, A] with Product with Serializable

  394. type Tagged[T] = AnyRef { type Tag = T }

  395. trait TheseFunctions extends AnyRef

  396. sealed abstract class TheseInstances extends TheseInstances0

  397. sealed abstract class TheseInstances0 extends TheseInstances1

  398. sealed abstract class TheseInstances1 extends AnyRef

  399. case class Three[V, A](v: V, a1: A, a2: A, a3: A)(implicit r: Reducer[A, V]) extends Finger[V, A] with Product with Serializable

  400. sealed abstract class TrampolineInstances extends AnyRef

  401. trait Traverse[F[_]] extends Functor[F] with Foldable[F]

    Idiomatic traversal of a structure, as described in The Essence of the Iterator Pattern.

  402. trait Traverse1[F[_]] extends Traverse[F] with Foldable1[F]

    A scalaz.Traverse where traverse is total over scalaz.Applys.

  403. sealed abstract class Tree[A] extends AnyRef

    A multi-way tree, also known as a rose tree.

  404. trait TreeFunctions extends AnyRef

  405. sealed abstract class TreeInstances extends AnyRef

  406. final case class TreeLoc[A](tree: Tree[A], lefts: TreeLoc.TreeForest[A], rights: TreeLoc.TreeForest[A], parents: TreeLoc.Parents[A]) extends Product with Serializable

    A rose-tree zipper.

  407. trait TreeLocFunctions extends AnyRef

  408. sealed abstract class TreeLocInstances extends AnyRef

  409. case class Two[V, A](v: V, a1: A, a2: A)(implicit r: Reducer[A, V]) extends Finger[V, A] with Product with Serializable

  410. trait Unapply[TC[_[_]], MA] extends AnyRef

    Represents a type MA that has been destructured into as a type constructor M[_] applied to type A, along with a corresponding type class instance TC[M].

  411. trait Unapply2[TC[_[_, _]], MAB] extends AnyRef

  412. trait Unapply21[TC[_[_, _], _], MAB] extends AnyRef

  413. sealed trait Unapply2_0 extends AnyRef

  414. trait UnapplyProduct[TC[_[_]], MA, MB] extends AnyRef

  415. sealed trait Unapply_0 extends Unapply_1

  416. sealed trait Unapply_1 extends Unapply_2

  417. sealed trait Unapply_2 extends Unapply_3

  418. sealed trait Unapply_3 extends Unapply_4

  419. sealed trait Unapply_4 extends AnyRef

  420. trait UnionTypes extends AnyRef

    Union types using Curry-Howard isomorphism

  421. sealed abstract class UnitReducer[C, M] extends Reducer[C, M]

  422. type Unwriter[W, A] = UnwriterT[scalaz.Id.Id, W, A]

  423. final case class UnwriterT[F[_], U, A](run: F[(U, A)]) extends Product with Serializable

    This data type is isomorphic to WriterT, however, it is NOT a monad.

  424. trait UnwriterTFunctions extends AnyRef

  425. sealed abstract class UnwriterTInstances extends UnwriterTInstances0

  426. sealed abstract class UnwriterTInstances0 extends UnwriterTInstances1

  427. sealed abstract class UnwriterTInstances1 extends UnwriterTInstances2

  428. sealed abstract class UnwriterTInstances2 extends AnyRef

  429. trait Unzip[F[_]] extends AnyRef

  430. sealed abstract class Validation[+E, +A] extends Product with Serializable

    Represents either:

  431. trait ValidationFunctions extends AnyRef

  432. sealed abstract class ValidationInstances extends ValidationInstances0

  433. sealed abstract class ValidationInstances0 extends ValidationInstances1

  434. sealed abstract class ValidationInstances1 extends ValidationInstances2

  435. sealed abstract class ValidationInstances2 extends ValidationInstances3

  436. sealed abstract class ValidationInstances3 extends AnyRef

  437. type ValidationNel[+E, +X] = Validation[NonEmptyList[E], X]

    An scalaz.Validation with a scalaz.NonEmptyList as the failure type.

    An scalaz.Validation with a scalaz.NonEmptyList as the failure type.

    Useful for accumulating errors through the corresponding scalaz.Applicative instance.

  438. final case class Value[+A](value: A) extends Need[A] with Product with Serializable

    Call by value

  439. sealed abstract class ViewL[S[_], A] extends AnyRef

    View of the left end of a sequence.

  440. sealed abstract class ViewR[S[_], A] extends AnyRef

    View of the right end of a sequence.

  441. sealed class WrappedRope[A] extends Ops[Rope[A]] with IndexedSeq[A] with IndexedSeqLike[A, WrappedRope[A]]

  442. type Writer[W, A] = WriterT[scalaz.Id.Id, W, A]

  443. final case class WriterT[F[_], W, A](run: F[(W, A)]) extends Product with Serializable

  444. trait WriterTFunctions extends AnyRef

  445. sealed abstract class WriterTInstance5 extends WriterTInstances6

  446. sealed abstract class WriterTInstances extends WriterTInstances0

  447. sealed abstract class WriterTInstances0 extends WriterTInstances1

  448. sealed abstract class WriterTInstances1 extends WriterTInstances2

  449. sealed abstract class WriterTInstances10 extends WriterTInstances11

  450. sealed abstract class WriterTInstances11 extends WriterTInstances12

  451. sealed abstract class WriterTInstances12 extends AnyRef

  452. sealed abstract class WriterTInstances2 extends WriterTInstances3

  453. sealed abstract class WriterTInstances3 extends WriterTInstances4

  454. sealed abstract class WriterTInstances4 extends WriterTInstance5

  455. sealed abstract class WriterTInstances6 extends WriterTInstances7

  456. sealed abstract class WriterTInstances7 extends WriterTInstances8

  457. sealed abstract class WriterTInstances8 extends WriterTInstances9

  458. sealed abstract class WriterTInstances9 extends WriterTInstances10

  459. trait Zap[F[_], G[_]] extends AnyRef

    Functors that annihilate each other.

  460. sealed abstract class ZapInstances extends AnyRef

  461. trait Zip[F[_]] extends AnyRef

  462. final case class Zipper[+A](lefts: Stream[A], focus: A, rights: Stream[A]) extends Product with Serializable

    Provides a pointed stream, which is a non-empty zipper-like stream structure that tracks an index (focus) position in a stream.

  463. trait ZipperFunctions extends AnyRef

  464. sealed abstract class ZipperInstances extends AnyRef

  465. sealed abstract class \&/[A, B] extends Product with Serializable

  466. sealed abstract class \/[+A, +B] extends Product with Serializable

    Represents disjunction.

  467. final case class \/-[+B](b: B) extends \/[Nothing, B] with Product with Serializable

  468. type |-->[A, B] = IndexedStoreT[scalaz.Id.Id, B, B, A]

  469. type |>=|[G[_], F[_]] = MonadPartialOrder[G, F]

  470. type ~>[-F[_], +G[_]] = NaturalTransformation[F, G]

    A scalaz.NaturalTransformation[F, G].

  471. type ~~>[-F[_, _], +G[_, _]] = BiNaturalTransformation[F, G]

  472. type = Any

  473. type = Nothing

  474. sealed abstract class BKTree[A] extends Product with Serializable

    Burkhard-Keller trees provide an implementation of sets which apart from the ordinary operations also has an approximate member search, allowing you to search for elements that are of a distance n from the element you are searching for.

  475. type Cojoin[F[_]] = Cobind[F]

    Annotations
    @deprecated
    Deprecated

    (Since version 7.1) Cojoin has been merged into Cobind

  476. trait Each[F[_]] extends AnyRef

    Run a side effect once for each A in the F.

  477. trait Index[F[_]] extends AnyRef

    Random access through an integer index.

  478. trait IsomorphismEach[F[_], G[_]] extends Each[F]

    Annotations
    @deprecated
    Deprecated

    (Since version 7.1) Each is deprecated

  479. trait IsomorphismIndex[F[_], G[_]] extends Index[F]

    Annotations
    @deprecated
    Deprecated

    (Since version 7.1) Index is deprecated, use Foldable instead

  480. trait Length[F[_]] extends AnyRef

  481. trait MetricSpace[F] extends AnyRef

    Useful metric spaces include the manhattan distance between two points, the Levenshtein edit distance between two strings, the number of edges in the shortest path between two nodes in an undirected graph and the Hamming distance between two binary strings.

Value Members

  1. object ==>> extends MapInstances with MapFunctions

  2. object Adjunction extends AdjunctionInstances with AdjunctionFunctions

  3. object Align

  4. object Alpha extends AlphaInstances with AlphaFunctions with Serializable

  5. object Applicative

  6. object ApplicativePlus

  7. object Apply

  8. object Arrow

  9. object BKTree extends BKTreeInstances with BKTreeFunctions with Serializable

  10. object Bifoldable

  11. object Bifunctor

  12. object BijectionT extends BijectionTInstances with BijectionTFunctions

  13. object Bind

  14. object Bitraverse

  15. object BuildInfo extends Product with Serializable

  16. object CaseInsensitive extends CaseInsensitiveInstances

  17. object Catchable

  18. object Category

  19. object CharSet extends CharSetFunctions with Serializable

  20. object Choice

  21. object Cobind

  22. object Codensity extends CodensityInstances

  23. object Cofree extends CofreeInstances with CofreeFunctions with Serializable

  24. object Cohoist

  25. object Cokleisli extends CokleisliInstances with CokleisliFunctions with Serializable

  26. object Comonad

  27. object ComonadStore

  28. object ComonadTrans

  29. object Compose

  30. object Cont extends IndexedContsTInstances with IndexedContsTFunctions

  31. object ContT extends IndexedContsTInstances with IndexedContsTFunctions

  32. object Contravariant

  33. object Conts extends IndexedContsTInstances with IndexedContsTFunctions

  34. object ContsT extends IndexedContsTInstances with IndexedContsTFunctions

  35. object Coproduct extends CoproductInstances with CoproductFunctions with Serializable

  36. object Cord extends Serializable

  37. object Cozip

  38. object DList extends DListInstances with DListFunctions

  39. object Diev extends DievInstances with DievFunctions

  40. object DievInterval

  41. object Digit extends DigitInstances with DigitFunctions with Serializable

  42. object Distributive extends DistributiveFunctions

  43. object Dual extends DualInstances

  44. object Either3 extends Serializable

  45. object EitherT extends EitherTInstances with EitherTFunctions with Serializable

  46. object Endo extends EndoInstances with EndoFunctions with Serializable

  47. object Endomorphic extends EndomorphicInstances with EndomorphicFunctions with Serializable

  48. object Enum

  49. object EphemeralStream extends EphemeralStreamInstances with EphemeralStreamFunctions

  50. object Equal

  51. object FingerTree extends FingerTreeInstances with FingerTreeFunctions

  52. object FoldCase extends FoldCaseInstances

  53. object Foldable

  54. object Foldable1

  55. object Forall extends Foralls

  56. object Free extends FreeInstances with FreeFunctions

  57. object Functor

  58. object Generator extends Generators

  59. object Heap extends HeapInstances with HeapFunctions

  60. object Hoist

  61. val IRWS: IndexedReaderWriterState.type

  62. val IRWST: IndexedReaderWriterStateT.type

  63. object Id extends IdInstances

  64. object IdT extends IdTInstances with IdTFunctions with Serializable

  65. object ImmutableArray extends ImmutableArrayFunctions

  66. object IndSeq

  67. object IndexedCont extends IndexedContsTInstances with IndexedContsTFunctions

  68. object IndexedContT extends IndexedContsTInstances with IndexedContsTFunctions

  69. object IndexedConts extends IndexedContsTInstances with IndexedContsTFunctions

  70. object IndexedContsT extends IndexedContsTInstances with IndexedContsTFunctions

  71. object IndexedReaderWriterState extends ReaderWriterStateTInstances with ReaderWriterStateTFunctions

  72. object IndexedReaderWriterStateT extends ReaderWriterStateTInstances with ReaderWriterStateTFunctions

  73. object IndexedState extends StateFunctions

  74. object IndexedStateT extends StateTInstances with StateTFunctions

  75. object IndexedStore extends Serializable

  76. object IndexedStoreT extends StoreTInstances with StoreTFunctions with Serializable

  77. object Inject extends InjectInstances with InjectFunctions

  78. object Injectivity

  79. object InsertionMap extends InsertionMapInstances with InsertionMapFunctions

  80. object InvariantFunctor

  81. object IsEmpty

  82. object Isomorphism extends Isomorphisms

  83. object Kleisli extends KleisliInstances with KleisliFunctions with Serializable

  84. object LazyEither extends LazyEitherInstances with LazyEitherFunctions

  85. object LazyEitherT extends LazyEitherTInstances with LazyEitherTFunctions with Serializable

  86. object LazyOption extends LazyOptionInstances with LazyOptionFunctions with Serializable

  87. object LazyOptionT extends LazyOptionTInstances with LazyOptionTFunctions with Serializable

  88. object LazyTuple extends LazyTupleFunctions

  89. object LazyTuple2 extends LazyTuple2Instances

  90. object LazyTuple3 extends LazyTuple3Instances

  91. object LazyTuple4 extends LazyTuple4Instances

  92. object Leibniz extends LeibnizInstances with LeibnizFunctions

  93. object Lens extends LensInstances with LensFunctions

  94. object LensFamily extends LensInstances with LensFunctions

  95. object Liskov extends LiskovInstances with LiskovFunctions

  96. object ListT extends ListTInstances with Serializable

  97. object Memo extends MemoInstances with MemoFunctions

  98. object MetricSpace

  99. object Monad

  100. object MonadListen

  101. object MonadPartialOrder extends MonadPartialOrderFunctions

  102. object MonadPlus

  103. object MonadReader

  104. object MonadState

  105. object MonadTell

  106. object MonadTrans

  107. object Monoid

  108. object Name

  109. object NaturalTransformation extends NaturalTransformations

  110. object Need

  111. object NonEmptyList extends NonEmptyListInstances with NonEmptyListFunctions

  112. object Nondeterminism

  113. object NullArgument extends NullArgumentInstances with NullArgumentFunctions

  114. object NullResult extends NullResultInstances with NullResultFunctions

  115. object OneAnd extends OneAndInstances with OneAndFunctions with Serializable

  116. object OneOr extends OneOrInstances with OneOrFunctions with Serializable

  117. object OptionT extends OptionTInstances with OptionTFunctions with Serializable

  118. object Optional

  119. object OrdSeq

  120. object Order

  121. object Ordering extends OrderingInstances with OrderingFunctions

  122. object PLens extends PLensInstances with PLensFunctions

  123. object PLensFamily extends PLensInstances with PLensFunctions

  124. object Plus

  125. object PlusEmpty

  126. object Profunctor

  127. val RWS: ReaderWriterState.type

  128. val RWST: ReaderWriterStateT.type

  129. object Reader extends Serializable

  130. object ReaderWriterState extends ReaderWriterStateTInstances with ReaderWriterStateTFunctions

  131. object ReaderWriterStateT extends ReaderWriterStateTInstances with ReaderWriterStateTFunctions

  132. object Reducer extends ReducerInstances with ReducerFunctions

  133. object Representable extends RepresentableInstances

  134. object Rope

  135. object Scalaz extends StateFunctions with ToTypeClassOps with ToDataOps with AllInstances with AllFunctions with ToAllStdOps with IdInstances

  136. object Semigroup

  137. object Show

  138. object Sink extends SinkInstances

  139. object Source extends SourceInstances

  140. object Split

  141. object State extends StateFunctions

  142. object StateT extends StateTInstances with StateTFunctions

  143. object Store extends Serializable

  144. object StoreT extends StoreTInstances with StoreTFunctions with Serializable

  145. object StreamT extends StreamTInstances

  146. object Tag

  147. object Tags

    Type tags that are used to discriminate between alternative type class instances.

  148. object Trampoline extends TrampolineInstances

  149. object Traverse

  150. object Traverse1

  151. object Tree extends TreeInstances with TreeFunctions

  152. object TreeLoc extends TreeLocInstances with TreeLocFunctions with Serializable

  153. object Unapply extends Unapply_0

  154. object Unapply2 extends Unapply2_0

  155. object Unapply21

  156. object UnapplyProduct

  157. object UnionTypes extends UnionTypes

  158. object UnitReducer

  159. object Unwriter extends Serializable

  160. object UnwriterT extends UnwriterTInstances with UnwriterTFunctions with Serializable

  161. object Unzip

  162. object Validation extends ValidationInstances with ValidationFunctions with Serializable

  163. object Value extends Serializable

  164. object Writer extends Serializable

  165. object WriterT extends WriterTInstances with WriterTFunctions with Serializable

  166. object Zap extends ZapInstances

  167. object Zip

  168. object Zipper extends ZipperInstances with ZipperFunctions with Serializable

  169. object \&/ extends TheseInstances with TheseFunctions with Serializable

  170. object \/ extends DisjunctionInstances with DisjunctionFunctions with Serializable

  171. implicit val idInstance: Traverse1[scalaz.Id.Id] with Each[scalaz.Id.Id] with Monad[scalaz.Id.Id] with Comonad[scalaz.Id.Id] with Distributive[scalaz.Id.Id] with Zip[scalaz.Id.Id] with Unzip[scalaz.Id.Id] with Align[scalaz.Id.Id] with Cozip[scalaz.Id.Id]

  172. package std

    Type Class instances for data structures in the Scala and Java standard libraries.

  173. package syntax

    Implicits to provide a convenient syntax to work with type classes and functions.

Deprecated Value Members

  1. val Cojoin: Cobind.type

    Annotations
    @deprecated
    Deprecated

    (Since version 7.1) Cojoin has been merged into Cobind

  2. object Each

    Annotations
    @deprecated
    Deprecated

    (Since version 7.1) Each is deprecated

  3. object Index

    Annotations
    @deprecated
    Deprecated

    (Since version 7.1) Index is deprecated, use Foldable#index instead

  4. object Length

    Annotations
    @deprecated
    Deprecated

    (Since version 7.1) Length is deprecated, use Foldable#length instead

Inherited from AnyRef

Inherited from Any

Ungrouped