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. case class -\/[+A](a: A) extends \/[A, Nothing] with Product with Serializable

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

    A scalaz.NaturalTransformation[G, F].

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

  4. type =?>[-E, +A] = Kleisli[Option, E, A]

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

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

  7. 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.

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

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

  9. trait AdjunctionFunctions extends AnyRef

  10. trait AdjunctionInstances extends AnyRef

  11. sealed trait Alpha extends AnyRef

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

  12. trait AlphaFunctions extends AnyRef

  13. trait AlphaInstances extends AnyRef

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

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

    Applicative Functor, described in Applicative Programming with Effects

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

    scalaz.Applicative combined with scalaz.PlusEmpty.

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

    scalaz.Applicative without point.

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

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

  19. trait BKTreeFunctions extends AnyRef

  20. trait BKTreeInstances extends AnyRef

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

    A constrained transformation natural in both sides of a bifunctor

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

    A function universally quantified over two parameters.

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

    A type giving rise to two unrelated scalaz.Foldables.

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

    A type giving rise to two unrelated scalaz.Functors.

  25. sealed trait BijectionT[F[+_], G[+_], A, B] extends AnyRef

  26. trait BijectionTFunctions extends AnyRef

  27. trait BijectionTInstances extends AnyRef

  28. 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.

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

    A type giving rise to two unrelated scalaz.Traverses.

  30. sealed trait CaseInsensitive[A] extends AnyRef

  31. trait CaseInsensitiveInstances extends AnyRef

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

    A context in which exceptions can be caught and thrown.

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

    scalaz.Compose with identity.

  34. sealed trait CharSet extends AnyRef

    Newtype for strings representing character sets.

  35. trait CharSetFunctions extends AnyRef

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

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

  38. trait Codensity[F[+_], +A] extends AnyRef

  39. 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.

  40. trait CofreeFunctions extends AnyRef

  41. trait CofreeInstances extends AnyRef

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

  43. trait Cojoin[F[_]] extends Functor[F]

  44. trait Cokleisli[F[_], A, B] extends AnyRef

  45. trait CokleisliFunctions extends AnyRef

  46. trait CokleisliInstances extends CokleisliInstances0

  47. trait CokleisliInstances0 extends AnyRef

  48. trait Comonad[F[_]] extends Cojoin[F] with Cobind[F]

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

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

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

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

    A constrained natural transformation

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

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

  55. trait Contravariant[F[_]] extends AnyRef

    Contravariant functors.

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

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

  58. sealed trait Coproduct[F[+_], G[+_], A] extends AnyRef

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

  59. trait CoproductFunctions extends AnyRef

  60. trait CoproductInstances extends AnyRef

  61. trait CoproductInstances0 extends CoproductInstances

  62. trait CoproductInstances1 extends CoproductInstances0

  63. sealed trait Cord extends Ops[FingerTree[Int, String]]

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

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

    Corepresentable functors

  65. abstract class Coyoneda[F[_], A] extends AnyRef

    The dual view of the Yoneda lemma.

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

  67. trait DList[A] extends AnyRef

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

  68. trait DListFunctions extends AnyRef

  69. trait DListInstances extends AnyRef

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

  71. sealed trait 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.

  72. trait DievFunctions extends DievImplementation

  73. trait DievImplementation extends AnyRef

  74. trait DievInstances extends DievImplementation

  75. sealed trait Digit extends AnyRef

    An algebraic data type representing the digits 0 - 9

  76. trait DigitFunctions extends AnyRef

  77. trait DigitInstances extends AnyRef

  78. trait DisjunctionFunctions extends AnyRef

  79. trait DisjunctionInstances extends DisjunctionInstances0

  80. trait DisjunctionInstances0 extends DisjunctionInstances1

  81. trait DisjunctionInstances1 extends DisjunctionInstances2

  82. trait DisjunctionInstances2 extends DisjunctionInstances3

  83. trait DisjunctionInstances3 extends AnyRef

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

    Dual of scalaz.Traverse.

  85. trait DistributiveFunctions extends AnyRef

  86. trait DualInstances extends AnyRef

  87. trait DualInstances0 extends AnyRef

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

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

  89. sealed trait Either3[+A, +B, +C] extends AnyRef

  90. sealed trait EitherT[F[+_], +A, +B] extends AnyRef

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

  91. trait EitherTFunctions extends AnyRef

  92. trait EitherTInstances extends EitherTInstances0

  93. trait EitherTInstances0 extends EitherTInstances1

  94. trait EitherTInstances1 extends AnyRef

  95. sealed trait Endo[A] extends AnyRef

    Endomorphisms.

  96. trait EndoFunctions extends AnyRef

  97. trait EndoInstances extends AnyRef

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

    An scalaz.Orderable with discrete values.

  99. sealed trait EphemeralStream[A] extends AnyRef

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

  100. trait EphemeralStreamFunctions extends AnyRef

  101. trait EphemeralStreamInstances extends AnyRef

  102. trait Equal[F] extends AnyRef

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

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

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

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

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

  106. trait FingerTreeFunctions extends AnyRef

  107. trait FingerTreeInstances extends AnyRef

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

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

  110. trait FoldCase[A] extends AnyRef

  111. trait FoldCaseInstances extends AnyRef

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

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

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

    A scalaz.Foldable where foldMap is total over semigroups.

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

    A universally quantified value

  115. trait Foralls extends AnyRef

  116. 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

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

    A free operational monad for some functor S.

  118. trait FreeFunctions extends AnyRef

  119. trait FreeInstances extends TrampolineInstances with SinkInstances with SourceInstances

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

    Functors, covariant by nature if not by Scala type.

  121. 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.

  122. trait Generators extends AnyRef

  123. sealed trait Heap[A] extends AnyRef

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

  124. trait HeapFunctions extends AnyRef

  125. trait HeapInstances extends AnyRef

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

  127. final case class ICons[A](head: A, tail: IList[A]) extends IList[A] with Product with Serializable

  128. sealed abstract class IList[A] extends Product with Serializable

    Safe, invariant alternative to stdlib List.

  129. sealed trait IListFunctions extends AnyRef

  130. sealed abstract class IListInstance0 extends AnyRef

  131. sealed abstract class IListInstances extends IListInstance0

  132. final case class INil[A]() extends IList[A] with Product with Serializable

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

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

  135. trait IdInstances extends AnyRef

    Mixed into object Id in the package object scalaz.

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

  137. trait IdTFunctions extends AnyRef

  138. trait IdTInstances extends IdTInstances0

  139. trait IdTInstances0 extends IdTInstances1

  140. trait IdTInstances1 extends IdTInstances2

  141. trait IdTInstances2 extends IdTInstances3

  142. trait IdTInstances3 extends AnyRef

  143. trait ImmutableArray[+A] extends AnyRef

    An immutable wrapper for arrays

  144. trait ImmutableArrayFunctions extends AnyRef

  145. sealed trait IndSeq[A] extends Ops[FingerTree[Int, A]]

    Indexed sequences, based on scalaz.FingerTree

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

    Random access through an integer index.

  147. type IndexedCont[+R, -O, +A] = IndexedContsT[scalaz.Id.Id, scalaz.Id.Id, R, O, A]

  148. type IndexedContT[M[+_], +R, -O, +A] = IndexedContsT[scalaz.Id.Id, M, R, O, A]

  149. type IndexedConts[W[+_], +R, -O, +A] = IndexedContsT[W, scalaz.Id.Id, R, O, A]

  150. sealed trait IndexedContsT[W[+_], M[+_], +R, -O, +A] extends AnyRef

  151. trait IndexedContsTFunctions extends AnyRef

  152. trait IndexedContsTInstances extends IndexedContsTInstances0

  153. trait IndexedContsTInstances0 extends AnyRef

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

  155. sealed trait IndexedReaderWriterStateT[F[+_], -R, +W, -S1, +S2, +A] extends AnyRef

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

  156. trait IndexedReaderWriterStateTInstances extends AnyRef

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

  158. trait IndexedStateFunctions extends AnyRef

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

  160. trait IndexedStateTFunctions extends AnyRef

  161. trait IndexedStateTInstances extends IndexedStateTInstances0

  162. trait IndexedStateTInstances0 extends IndexedStateTInstances1

  163. trait IndexedStateTInstances1 extends IndexedStateTInstances2

  164. trait IndexedStateTInstances2 extends AnyRef

  165. type IndexedStore[+I, -A, +B] = IndexedStoreT[scalaz.Id.Id, I, A, B]

  166. sealed trait IndexedStoreT[F[+_], +I, -A, +B] extends AnyRef

  167. trait IndexedStoreTFunctions extends AnyRef

  168. trait IndexedStoreTInstances extends IndexedStoreTInstances0

  169. trait IndexedStoreTInstances0 extends IndexedStoreTInstances1

  170. trait IndexedStoreTInstances1 extends IndexedStoreTInstances2

  171. trait IndexedStoreTInstances2 extends AnyRef

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

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

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

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

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

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

  177. sealed trait InsertionMap[K, V] extends AnyRef

    Returns a list in order of key insertion.

  178. trait InsertionMapFunctions extends AnyRef

  179. trait InsertionMapInstances extends AnyRef

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

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

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

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

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

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

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

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

  187. trait IsomorphismCojoin[F[_], G[_]] extends Cojoin[F] with IsomorphismFunctor[F, G]

  188. trait IsomorphismComonad[F[_], G[_]] extends Comonad[F] with IsomorphismCojoin[F, G]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  204. trait Isomorphisms extends IsomorphismsLow0

  205. trait IsomorphismsLow0 extends IsomorphismsLow1

  206. trait IsomorphismsLow1 extends AnyRef

  207. sealed trait Kleisli[M[+_], -A, +B] extends AnyRef

    Represents a function A => M[B].

  208. trait KleisliFunctions extends AnyRef

  209. trait KleisliInstances extends KleisliInstances0

  210. trait KleisliInstances0 extends KleisliInstances1

  211. trait KleisliInstances1 extends KleisliInstances2

  212. trait KleisliInstances2 extends KleisliInstances3

  213. trait KleisliInstances3 extends KleisliInstances4

  214. trait KleisliInstances4 extends KleisliInstances5

  215. trait KleisliInstances5 extends KleisliInstances6

  216. trait KleisliInstances6 extends KleisliInstances7

  217. trait KleisliInstances7 extends KleisliInstances8

  218. trait KleisliInstances8 extends AnyRef

  219. trait Konst[A] extends AnyRef

  220. trait Lan[G[_], H[_], A] extends AnyRef

    The left Kan extension of H along G

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

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

  223. sealed trait LazyEither[+A, +B] extends AnyRef

    scala.Either, but with a value by name.

  224. trait LazyEitherFunctions extends AnyRef

  225. trait LazyEitherInstances extends AnyRef

  226. sealed trait LazyEitherT[F[+_], +A, +B] extends AnyRef

  227. trait LazyEitherTFunctions extends AnyRef

  228. trait LazyEitherTInstances extends LazyEitherTInstances0

  229. trait LazyEitherTInstances0 extends LazyEitherTInstances1

  230. trait LazyEitherTInstances1 extends AnyRef

  231. sealed trait LazyOption[+A] extends AnyRef

    scala.Option, but with a value by name.

  232. trait LazyOptionFunctions extends AnyRef

  233. trait LazyOptionInstances extends AnyRef

  234. sealed trait LazyOptionT[F[+_], +A] extends AnyRef

  235. trait LazyOptionTFunctions extends AnyRef

  236. trait LazyOptionTInstances extends LazyOptionTInstances0

  237. trait LazyOptionTInstances0 extends LazyOptionTInstances1

  238. trait LazyOptionTInstances1 extends LazyOptionTInstances2

  239. trait LazyOptionTInstances2 extends AnyRef

  240. sealed trait LazyTuple2[A, B] extends AnyRef

    scala.Tuple2, but with values by name.

  241. trait LazyTuple2Instances extends LazyTuple2Instances0

  242. trait LazyTuple2Instances0 extends AnyRef

  243. sealed trait LazyTuple3[A, B, C] extends AnyRef

    scala.Tuple3, but with values by name.

  244. trait LazyTuple3Instances extends LazyTuple3Instances0

  245. trait LazyTuple3Instances0 extends AnyRef

  246. sealed trait LazyTuple4[A, B, C, D] extends AnyRef

    scala.Tuple4, but with values by name.

  247. trait LazyTuple4Instances extends LazyTuple4Instances0

  248. trait LazyTuple4Instances0 extends AnyRef

  249. trait LazyTupleFunctions extends AnyRef

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

  251. trait Leibniz[-L, +H >: L, A >: L <: H, B >: L <: H] extends AnyRef

    Leibnizian equality: a better =:=

  252. trait LeibnizFunctions extends AnyRef

  253. trait LeibnizInstances extends AnyRef

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

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

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

  256. sealed trait 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.

  257. trait LensFamilyFunctions extends AnyRef

  258. trait LensFunctions extends LensFamilyFunctions

  259. trait LensInstances extends LensInstances0

  260. trait LensInstances0 extends AnyRef

  261. trait Liskov[-A, +B] extends AnyRef

    Liskov substitutability: A better <:<

  262. trait LiskovFunctions extends AnyRef

  263. trait LiskovInstances extends AnyRef

  264. sealed case class ListT[M[+_], +A](underlying: M[List[A]]) extends Product with Serializable

    ListT monad transformer.

  265. trait ListTInstances extends ListTInstances1

  266. trait ListTInstances1 extends ListTInstances2

  267. trait ListTInstances2 extends AnyRef

  268. trait MapFunctions extends AnyRef

  269. sealed abstract class MapInstances extends AnyRef

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

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

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

    A function memoization strategy.

  273. trait MemoFunctions extends AnyRef

  274. trait MemoInstances extends AnyRef

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

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

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

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

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

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

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

    This trait establishes a partial order among monads.

  281. trait MonadPartialOrderFunctions extends MonadPartialOrderFunctions1

  282. trait MonadPartialOrderFunctions1 extends AnyRef

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

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

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

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

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

    The class of monads supporting write operations

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

    Class of monad transformers.

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

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

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

    Call by name

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

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

  291. trait NaturalTransformations extends AnyRef

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

    Call by need

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

  294. sealed trait NonEmptyList[+A] extends AnyRef

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

  295. trait NonEmptyListFunctions extends AnyRef

  296. trait NonEmptyListInstances extends NonEmptyListInstances0

  297. trait NonEmptyListInstances0 extends AnyRef

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

    A context supporting nondeterministic choice.

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

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

  301. trait OneAndFunctions extends AnyRef

  302. sealed abstract class OneAndInstances extends OneAndInstances0

  303. sealed abstract class OneAndInstances0 extends OneAndInstances1

  304. sealed abstract class OneAndInstances1 extends OneAndInstances2

  305. sealed abstract class OneAndInstances2 extends OneAndInstances3

  306. sealed abstract class OneAndInstances3 extends OneAndInstances4

  307. sealed abstract class OneAndInstances4 extends OneAndInstances5

  308. sealed abstract class OneAndInstances5 extends AnyRef

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

  310. trait OneOrFunctions extends AnyRef

  311. sealed abstract class OneOrInstances extends OneOrInstances0

  312. sealed abstract class OneOrInstances0 extends OneOrInstances1

  313. sealed abstract class OneOrInstances1 extends OneOrInstances2

  314. sealed abstract class OneOrInstances2 extends OneOrInstances3

  315. sealed abstract class OneOrInstances3 extends OneOrInstances4

  316. sealed abstract class OneOrInstances4 extends OneOrInstances5

  317. sealed abstract class OneOrInstances5 extends OneOrInstances6

  318. sealed abstract class OneOrInstances6 extends AnyRef

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

    OptionT monad transformer.

  320. trait OptionTFunctions extends AnyRef

  321. trait OptionTInstances extends OptionTInstances0

  322. trait OptionTInstances0 extends OptionTInstances1

  323. trait OptionTInstances1 extends OptionTInstances2

  324. trait OptionTInstances2 extends OptionTInstances3

  325. trait OptionTInstances3 extends AnyRef

  326. sealed trait OrdSeq[A] extends Ops[FingerTree[LastOption[A], A]]

    Ordered sequences, based on scalaz.FingerTree

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

    Safer version of scala.math.Ordering.

  328. sealed abstract class Ordering extends AnyRef

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

  329. trait OrderingFunctions extends AnyRef

  330. trait OrderingInstances extends AnyRef

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

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

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

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

  334. sealed trait 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.

  335. trait PLensFamilyFunctions extends PLensInstances

  336. trait PLensFunctions extends PLensFamilyFunctions with PLensInstances

  337. trait PLensInstances extends AnyRef

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

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

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

    Universally quantified scalaz.Semigroup.

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

    Universally quantified scalaz.Monoid.

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

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

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

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

  345. trait Ran[G[_], H[_], A] extends AnyRef

    The right Kan extension of H along G

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

  347. type Reader[-E, +A] = Kleisli[scalaz.Id.Id, E, A]

  348. type ReaderT[F[+_], -E, +A] = Kleisli[F, E, A]

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

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

  351. trait ReaderWriterStateTFunctions extends AnyRef

  352. trait ReaderWriterStateTInstances extends IndexedReaderWriterStateTInstances

  353. sealed trait 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.

  354. trait ReducerFunctions extends AnyRef

  355. trait ReducerInstances extends AnyRef

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

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

  357. trait RepresentableInstances extends AnyRef

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

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

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

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

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

  362. trait Semigroup[F] extends AnyRef

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

  363. trait Show[F] extends AnyRef

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

  364. trait SinkInstances extends AnyRef

  365. trait SourceInstances extends AnyRef

  366. trait Split[=>:[_, _]] extends Category[=>:]

    A scalaz.Category permitting products.

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

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

  368. trait StateFunctions extends IndexedStateFunctions

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

    StateT Monad Transformer

    StateT Monad Transformer

    An introduction to the State Monad

  370. trait StateTFunctions extends IndexedStateTFunctions

  371. trait StateTInstances extends StateTInstances0

  372. trait StateTInstances0 extends StateTInstances1

  373. trait StateTInstances1 extends IndexedStateTInstances

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

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

  376. trait StoreTFunctions extends IndexedStoreTFunctions

  377. trait StoreTInstances extends StoreTInstances0

  378. trait StoreTInstances0 extends StoreTInstances1

  379. trait StoreTInstances1 extends StoreTInstances2

  380. trait StoreTInstances2 extends IndexedStoreTInstances

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

    StreamT monad transformer.

  382. trait StreamTInstances extends StreamTInstances0

  383. trait StreamTInstances0 extends StreamTInstances1

  384. trait StreamTInstances1 extends StreamTInstances2

  385. trait StreamTInstances2 extends AnyRef

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

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

  388. trait TheseFunctions extends AnyRef

  389. sealed abstract class TheseInstances extends TheseInstances0

  390. sealed abstract class TheseInstances0 extends TheseInstances1

  391. sealed abstract class TheseInstances1 extends AnyRef

  392. 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

  393. trait TrampolineInstances extends AnyRef

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

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

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

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

  396. sealed trait Tree[A] extends AnyRef

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

  397. trait TreeFunctions extends AnyRef

  398. trait TreeInstances extends AnyRef

  399. sealed trait TreeLoc[A] extends AnyRef

    A rose-tree zipper.

  400. trait TreeLocFunctions extends AnyRef

  401. trait TreeLocInstances extends AnyRef

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

  403. 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].

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

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

  406. trait Unapply2_0 extends AnyRef

  407. trait UnapplyCo[TC[_[_]], MA] extends AnyRef

    Unapply a covariant type constructor, maintaining the covariance

  408. trait UnapplyCo_0 extends UnapplyCo_1

  409. trait UnapplyCo_1 extends UnapplyCo_2

  410. trait UnapplyCo_2 extends UnapplyCo_3

  411. trait UnapplyCo_3 extends AnyRef

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

  413. trait Unapply_0 extends Unapply_1

  414. trait Unapply_1 extends Unapply_2

  415. trait Unapply_2 extends Unapply_3

  416. trait Unapply_3 extends Unapply_4

  417. trait Unapply_4 extends AnyRef

  418. trait UnionTypes extends AnyRef

    Union types using Curry-Howard isomorphism

  419. sealed trait UnitReducer[C, M] extends Reducer[C, M]

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

  421. sealed trait UnwriterT[F[+_], +U, +A] extends AnyRef

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

  422. trait UnwriterTFunctions extends AnyRef

  423. trait UnwriterTInstances extends UnwriterTInstances0

  424. trait UnwriterTInstances0 extends UnwriterTInstances1

  425. trait UnwriterTInstances1 extends UnwriterTInstances2

  426. trait UnwriterTInstances2 extends AnyRef

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

  428. sealed trait Validation[+E, +A] extends AnyRef

    Represents either:

  429. trait ValidationFunctions extends AnyRef

  430. trait ValidationInstances extends ValidationInstances0

  431. trait ValidationInstances0 extends ValidationInstances1

  432. trait ValidationInstances1 extends ValidationInstances2

  433. trait ValidationInstances2 extends ValidationInstances3

  434. trait ValidationInstances3 extends AnyRef

  435. 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.

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

    Call by value

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

    View of the left end of a sequence.

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

    View of the right end of a sequence.

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

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

  441. sealed trait WriterT[F[+_], +W, +A] extends AnyRef

  442. trait WriterTFunctions extends AnyRef

  443. trait WriterTInstance5 extends WriterTInstances6

  444. trait WriterTInstances extends WriterTInstances0

  445. trait WriterTInstances0 extends WriterTInstances1

  446. trait WriterTInstances1 extends WriterTInstances2

  447. trait WriterTInstances10 extends WriterTInstances11

  448. trait WriterTInstances11 extends WriterTInstances12

  449. trait WriterTInstances12 extends AnyRef

  450. trait WriterTInstances2 extends WriterTInstances3

  451. trait WriterTInstances3 extends WriterTInstances4

  452. trait WriterTInstances4 extends WriterTInstance5

  453. trait WriterTInstances6 extends WriterTInstances7

  454. trait WriterTInstances7 extends WriterTInstances8

  455. trait WriterTInstances8 extends WriterTInstances9

  456. trait WriterTInstances9 extends WriterTInstances10

  457. abstract class Yoneda[F[_], A] extends AnyRef

    The free functor generated by F.

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

    Functors that annihilate each other.

  459. trait ZapInstances extends AnyRef

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

  461. sealed trait Zipper[+A] extends AnyRef

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

  462. trait ZipperFunctions extends AnyRef

  463. trait ZipperInstances extends AnyRef

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

  465. sealed trait \/[+A, +B] extends AnyRef

    Represents disjunction.

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

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

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

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

    A scalaz.NaturalTransformation[F, G].

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

  471. type ⊤ = Any

  472. type ⊥ = Nothing

  473. sealed trait BKTree[A] extends AnyRef

    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.

  474. 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 Alpha extends AlphaFunctions with AlphaInstances

  4. object Applicative

  5. object ApplicativePlus

  6. object Apply

  7. object Arrow

  8. object BKTree extends BKTreeFunctions with BKTreeInstances

  9. object Bifoldable

  10. object Bifunctor

  11. object BijectionT extends BijectionTFunctions with BijectionTInstances

  12. object Bind

  13. object Bitraverse

  14. object BuildInfo extends Product with Serializable

  15. object CaseInsensitive extends CaseInsensitiveInstances

  16. object Catchable

  17. object Category

  18. object CharSet extends CharSetFunctions

  19. object Choice

  20. object Cobind

  21. object Codensity

  22. object Cofree extends CofreeFunctions with CofreeInstances with Serializable

  23. object Cohoist

  24. object Cojoin

  25. object Cokleisli extends CokleisliFunctions with CokleisliInstances

  26. object Comonad

  27. object ComonadStore

  28. object ComonadTrans

  29. object Compose

  30. object Cont extends IndexedContsTFunctions with IndexedContsTInstances

  31. object ContT extends IndexedContsTFunctions with IndexedContsTInstances

  32. object Contravariant

  33. object Conts extends IndexedContsTFunctions with IndexedContsTInstances

  34. object ContsT extends IndexedContsTFunctions with IndexedContsTInstances

  35. object Coproduct extends CoproductFunctions with CoproductInstances0

  36. object Cord

  37. object Coyoneda

  38. object Cozip

  39. object DList extends DListFunctions with DListInstances

  40. object Diev extends DievInstances with DievFunctions

  41. object DievInterval

  42. object Digit extends DigitFunctions with DigitInstances

  43. object Distributive extends DistributiveFunctions

  44. object Dual extends DualInstances

  45. object Each

  46. object Either3

  47. object EitherT extends EitherTFunctions with EitherTInstances

  48. object Endo extends EndoFunctions with EndoInstances

  49. object Enum

  50. object EphemeralStream extends EphemeralStreamFunctions with EphemeralStreamInstances

  51. object Equal

  52. object FingerTree extends FingerTreeInstances with FingerTreeFunctions

  53. object FoldCase extends FoldCaseInstances

  54. object Foldable

  55. object Foldable1

  56. object Forall extends Foralls

  57. object Free extends FreeFunctions with FreeInstances

  58. object Functor

  59. object Generator extends Generators

  60. object Heap extends HeapFunctions with HeapInstances

  61. object Hoist

  62. object IList extends IListInstances with IListFunctions with Serializable

  63. val IRWS: IndexedReaderWriterState.type

  64. val IRWST: IndexedReaderWriterStateT.type

  65. object Id extends IdInstances

  66. object IdT extends IdTFunctions with IdTInstances with Serializable

  67. object ImmutableArray extends ImmutableArrayFunctions

  68. object IndSeq

  69. object Index

  70. object IndexedCont extends IndexedContsTFunctions with IndexedContsTInstances

  71. object IndexedContT extends IndexedContsTFunctions with IndexedContsTInstances

  72. object IndexedConts extends IndexedContsTFunctions with IndexedContsTInstances

  73. object IndexedContsT extends IndexedContsTFunctions with IndexedContsTInstances

  74. object IndexedReaderWriterState extends ReaderWriterStateTFunctions with ReaderWriterStateTInstances

  75. object IndexedReaderWriterStateT extends ReaderWriterStateTFunctions with ReaderWriterStateTInstances

  76. object IndexedState extends StateFunctions

  77. object IndexedStateT extends StateTFunctions with StateTInstances

  78. object IndexedStore

  79. object IndexedStoreT extends StoreTFunctions with StoreTInstances

  80. object Injectivity

  81. object InsertionMap extends InsertionMapFunctions with InsertionMapInstances

  82. object IsEmpty

  83. object Isomorphism extends Isomorphisms

  84. object Kleisli extends KleisliFunctions with KleisliInstances

  85. object Lan

  86. object LazyEither extends LazyEitherFunctions with LazyEitherInstances

  87. object LazyEitherT extends LazyEitherTFunctions with LazyEitherTInstances

  88. object LazyOption extends LazyOptionFunctions with LazyOptionInstances

  89. object LazyOptionT extends LazyOptionTFunctions with LazyOptionTInstances

  90. object LazyTuple extends LazyTupleFunctions

  91. object LazyTuple2 extends LazyTuple2Instances

  92. object LazyTuple3 extends LazyTuple3Instances

  93. object LazyTuple4 extends LazyTuple4Instances

  94. object Leibniz extends LeibnizInstances with LeibnizFunctions

  95. object Length

  96. object Lens extends LensFunctions with LensInstances

  97. object LensFamily extends LensFunctions with LensInstances

  98. object Liskov extends LiskovInstances with LiskovFunctions

  99. object ListT extends ListTInstances with Serializable

  100. object Memo extends MemoFunctions with MemoInstances

  101. object MetricSpace

  102. object Monad

  103. object MonadListen

  104. object MonadPartialOrder extends MonadPartialOrderFunctions

  105. object MonadPlus

  106. object MonadReader

  107. object MonadState

  108. object MonadTell

  109. object MonadTrans

  110. object Monoid

  111. object Name

  112. object NaturalTransformation extends NaturalTransformations

  113. object Need

  114. object NonEmptyList extends NonEmptyListFunctions with NonEmptyListInstances

  115. object Nondeterminism

  116. object OneAnd extends OneAndInstances with OneAndFunctions with Serializable

  117. object OneOr extends OneOrInstances with OneOrFunctions with Serializable

  118. object OptionT extends OptionTFunctions with OptionTInstances with Serializable

  119. object OrdSeq

  120. object Order

  121. object Ordering extends OrderingFunctions with OrderingInstances

  122. object PLens extends PLensFunctions with PLensInstances

  123. object PLensFamily extends PLensFunctions with PLensInstances

  124. object Plus

  125. object PlusEmpty

  126. object Profunctor

  127. val RWS: ReaderWriterState.type

  128. val RWST: ReaderWriterStateT.type

  129. object Ran

  130. object Reader

  131. object ReaderWriterState extends ReaderWriterStateTFunctions with ReaderWriterStateTInstances

  132. object ReaderWriterStateT extends ReaderWriterStateTFunctions with ReaderWriterStateTInstances

  133. object Reducer extends ReducerFunctions with ReducerInstances

  134. object Representable extends RepresentableInstances

  135. object Rope

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

  137. object Semigroup

  138. object Show

  139. object Sink extends SinkInstances

  140. object Source extends SourceInstances

  141. object Split

  142. object State extends StateFunctions

  143. object StateT extends StateTFunctions with StateTInstances

  144. object Store

  145. object StoreT extends StoreTFunctions with StoreTInstances

  146. object StreamT extends StreamTInstances

  147. object Tag

  148. object Tags

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

  149. object Trampoline extends TrampolineInstances

  150. object Traverse

  151. object Traverse1

  152. object Tree extends TreeFunctions with TreeInstances

  153. object TreeLoc extends TreeLocFunctions with TreeLocInstances

  154. object Unapply extends Unapply_0

  155. object Unapply2 extends Unapply2_0

  156. object Unapply21

  157. object UnapplyCo extends UnapplyCo_0

  158. object UnapplyProduct

  159. object UnionTypes extends UnionTypes

  160. object UnitReducer

  161. object Unwriter

  162. object UnwriterT extends UnwriterTFunctions with UnwriterTInstances

  163. object Unzip

  164. object Validation extends ValidationFunctions with ValidationInstances

  165. object Value extends Serializable

  166. object Writer

  167. object WriterT extends WriterTFunctions with WriterTInstances

  168. object Yoneda

  169. object Zap extends ZapInstances

  170. object Zip

  171. object Zipper extends ZipperFunctions with ZipperInstances

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

  173. object \/ extends DisjunctionInstances with DisjunctionFunctions

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

  175. package std

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

  176. package syntax

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

Inherited from AnyRef

Inherited from Any

Ungrouped