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. type =?>[-E, +A] = Kleisli[Option, E, A]

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

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

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

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

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

  8. trait AdjunctionFunctions extends AnyRef

  9. trait AdjunctionInstances extends AnyRef

  10. sealed trait Alpha extends AnyRef

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

  11. trait AlphaFunctions extends AnyRef

  12. trait AlphaInstances extends AnyRef

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

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

    Applicative Functor, described in Applicative Programming with Effects

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

    scalaz.Applicative combined with scalaz.PlusEmpty.

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

    scalaz.Applicative without point.

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

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

  18. trait BKTreeFunctions extends AnyRef

  19. trait BKTreeInstances extends AnyRef

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

    A constrained transformation natural in both sides of a bifunctor

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

    A function universally quantified over two parameters.

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

    A type giving rise to two unrelated scalaz.Foldables.

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

    A type giving rise to two unrelated scalaz.Functors.

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

  25. trait BijectionTFunctions extends AnyRef

  26. trait BijectionTInstances extends AnyRef

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

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

    A type giving rise to two unrelated scalaz.Traverses.

  29. sealed trait CaseInsensitive[A] extends AnyRef

  30. trait CaseInsensitiveInstances extends AnyRef

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

    A context in which exceptions can be caught and thrown.

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

    scalaz.Compose with identity.

  33. sealed trait CharSet extends AnyRef

    Newtype for strings representing character sets.

  34. trait CharSetFunctions extends AnyRef

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

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

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

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

  39. trait CofreeFunctions extends AnyRef

  40. trait CofreeInstances extends AnyRef

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

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

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

  44. trait CokleisliFunctions extends AnyRef

  45. trait CokleisliInstances extends CokleisliInstances0

  46. trait CokleisliInstances0 extends AnyRef

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

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

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

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

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

    A constrained natural transformation

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

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

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

    Contravariant functors.

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

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

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

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

  58. trait CoproductFunctions extends AnyRef

  59. trait CoproductInstances extends AnyRef

  60. trait CoproductInstances0 extends CoproductInstances

  61. trait CoproductInstances1 extends CoproductInstances0

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

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

    Corepresentable functors

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

  65. trait DList[A] extends AnyRef

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

  66. trait DListFunctions extends AnyRef

  67. trait DListInstances extends AnyRef

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

  69. sealed trait Diev[A] extends AnyRef

    Implementation of a Discrete Interval Encoding Tree (http://web.

  70. trait DievFunctions extends DievImplementation

  71. trait DievImplementation extends AnyRef

  72. trait DievInstances extends DievImplementation

  73. sealed trait Digit extends AnyRef

    An algebraic data type representing the digits 0 - 9

  74. trait DigitFunctions extends AnyRef

  75. trait DigitInstances extends AnyRef

  76. trait DisjunctionFunctions extends AnyRef

  77. trait DisjunctionInstances extends DisjunctionInstances0

  78. trait DisjunctionInstances0 extends DisjunctionInstances1

  79. trait DisjunctionInstances1 extends DisjunctionInstances2

  80. trait DisjunctionInstances2 extends DisjunctionInstances3

  81. trait DisjunctionInstances3 extends AnyRef

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

    Dual of scalaz.Traverse.

  83. trait DistributiveFunctions extends AnyRef

  84. trait DualInstances extends AnyRef

  85. trait DualInstances0 extends AnyRef

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

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

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

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

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

  89. trait EitherTFunctions extends AnyRef

  90. trait EitherTInstances extends EitherTInstances0

  91. trait EitherTInstances0 extends EitherTInstances1

  92. trait EitherTInstances1 extends AnyRef

  93. sealed trait Endo[A] extends AnyRef

    Endomorphisms.

  94. trait EndoFunctions extends AnyRef

  95. trait EndoInstances extends AnyRef

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

    An scalaz.Orderable with discrete values.

  97. sealed trait EphemeralStream[A] extends AnyRef

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

  98. trait EphemeralStreamFunctions extends AnyRef

  99. trait EphemeralStreamInstances extends AnyRef

  100. trait Equal[F] extends AnyRef

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

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

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

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

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

  104. trait FingerTreeFunctions extends AnyRef

  105. trait FingerTreeInstances extends AnyRef

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

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

  108. trait FoldCase[A] extends AnyRef

  109. trait FoldCaseInstances extends AnyRef

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

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

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

    A scalaz.Foldable where foldMap is total over semigroups.

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

    A universally quantified value

  113. trait Foralls extends AnyRef

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

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

    A free operational monad for some functor S.

  116. trait FreeFunctions extends AnyRef

  117. trait FreeInstances extends TrampolineInstances with SinkInstances with SourceInstances

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

    Functors, covariant by nature if not by Scala type.

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

  120. trait Generators extends AnyRef

  121. sealed trait Heap[A] extends AnyRef

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

  122. trait HeapFunctions extends AnyRef

  123. trait HeapInstances extends AnyRef

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

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

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

  127. trait IdInstances extends AnyRef

    Mixed into object Id in the package object scalaz.

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

  129. trait IdTFunctions extends AnyRef

  130. trait IdTInstances extends IdTInstances0

  131. trait IdTInstances0 extends IdTInstances1

  132. trait IdTInstances1 extends IdTInstances2

  133. trait IdTInstances2 extends IdTInstances3

  134. trait IdTInstances3 extends AnyRef

  135. trait ImmutableArray[+A] extends AnyRef

    An immutable wrapper for arrays

  136. trait ImmutableArrayFunctions extends AnyRef

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

    Indexed sequences, based on scalaz.FingerTree

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

    Random access through an integer index.

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

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

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

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

  143. trait IndexedContsTFunctions extends AnyRef

  144. trait IndexedContsTInstances extends IndexedContsTInstances0

  145. trait IndexedContsTInstances0 extends AnyRef

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

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

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

  148. trait IndexedReaderWriterStateTInstances extends AnyRef

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

  150. trait IndexedStateFunctions extends AnyRef

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

  152. trait IndexedStateTFunctions extends AnyRef

  153. trait IndexedStateTInstances extends IndexedStateTInstances0

  154. trait IndexedStateTInstances0 extends IndexedStateTInstances1

  155. trait IndexedStateTInstances1 extends IndexedStateTInstances2

  156. trait IndexedStateTInstances2 extends AnyRef

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

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

  159. trait IndexedStoreTFunctions extends AnyRef

  160. trait IndexedStoreTInstances extends IndexedStoreTInstances0

  161. trait IndexedStoreTInstances0 extends IndexedStoreTInstances1

  162. trait IndexedStoreTInstances1 extends IndexedStoreTInstances2

  163. trait IndexedStoreTInstances2 extends AnyRef

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

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

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

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

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

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

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

    Returns a list in order of key insertion.

  170. trait InsertionMapFunctions extends AnyRef

  171. trait InsertionMapInstances extends AnyRef

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  196. trait Isomorphisms extends IsomorphismsLow0

  197. trait IsomorphismsLow0 extends IsomorphismsLow1

  198. trait IsomorphismsLow1 extends AnyRef

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

    Represents a function A => M[B].

  200. trait KleisliFunctions extends AnyRef

  201. trait KleisliInstances extends KleisliInstances0

  202. trait KleisliInstances0 extends KleisliInstances1

  203. trait KleisliInstances1 extends KleisliInstances2

  204. trait KleisliInstances2 extends KleisliInstances3

  205. trait KleisliInstances3 extends KleisliInstances4

  206. trait KleisliInstances4 extends KleisliInstances5

  207. trait KleisliInstances5 extends KleisliInstances6

  208. trait KleisliInstances6 extends KleisliInstances7

  209. trait KleisliInstances7 extends KleisliInstances8

  210. trait KleisliInstances8 extends AnyRef

  211. trait Konst[A] extends AnyRef

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

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

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

    scala.Either, but with a value by name.

  215. trait LazyEitherFunctions extends AnyRef

  216. trait LazyEitherInstances extends AnyRef

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

  218. trait LazyEitherTFunctions extends AnyRef

  219. trait LazyEitherTInstances extends LazyEitherTInstances0

  220. trait LazyEitherTInstances0 extends LazyEitherTInstances1

  221. trait LazyEitherTInstances1 extends AnyRef

  222. sealed trait LazyOption[+A] extends AnyRef

    scala.Option, but with a value by name.

  223. trait LazyOptionFunctions extends AnyRef

  224. trait LazyOptionInstances extends AnyRef

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

  226. trait LazyOptionTFunctions extends AnyRef

  227. trait LazyOptionTInstances extends LazyOptionTInstances0

  228. trait LazyOptionTInstances0 extends LazyOptionTInstances1

  229. trait LazyOptionTInstances1 extends LazyOptionTInstances2

  230. trait LazyOptionTInstances2 extends AnyRef

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

    scala.Tuple2, but with values by name.

  232. trait LazyTuple2Instances extends LazyTuple2Instances0

  233. trait LazyTuple2Instances0 extends AnyRef

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

    scala.Tuple3, but with values by name.

  235. trait LazyTuple3Instances extends LazyTuple3Instances0

  236. trait LazyTuple3Instances0 extends AnyRef

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

    scala.Tuple4, but with values by name.

  238. trait LazyTuple4Instances extends LazyTuple4Instances0

  239. trait LazyTuple4Instances0 extends AnyRef

  240. trait LazyTupleFunctions extends AnyRef

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

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

    Leibnizian equality: a better =:=

  243. trait LeibnizFunctions extends AnyRef

  244. trait LeibnizInstances extends AnyRef

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

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

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

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

  248. trait LensFamilyFunctions extends AnyRef

  249. trait LensFunctions extends LensFamilyFunctions

  250. trait LensInstances extends LensInstances0

  251. trait LensInstances0 extends AnyRef

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

    Liskov substitutability: A better <:<

  253. trait LiskovFunctions extends AnyRef

  254. trait LiskovInstances extends AnyRef

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

    ListT monad transformer.

  256. trait ListTInstances extends ListTInstances1

  257. trait ListTInstances1 extends ListTInstances2

  258. trait ListTInstances2 extends AnyRef

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

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

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

    A function memoization strategy.

  262. trait MemoFunctions extends AnyRef

  263. trait MemoInstances extends AnyRef

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

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

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

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

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

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

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

    This trait establishes a partial order among monads.

  270. trait MonadPartialOrderFunctions extends MonadPartialOrderFunctions1

  271. trait MonadPartialOrderFunctions1 extends AnyRef

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

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

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

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

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

    The class of monads supporting write operations

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

    Class of monad transformers.

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

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

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

    Call by name

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

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

  280. trait NaturalTransformations extends AnyRef

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

    Call by need

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

  283. sealed trait NonEmptyList[+A] extends AnyRef

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

  284. trait NonEmptyListFunctions extends AnyRef

  285. trait NonEmptyListInstances extends NonEmptyListInstances0

  286. trait NonEmptyListInstances0 extends AnyRef

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

    A context supporting nondeterministic choice.

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

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

    OptionT monad transformer.

  290. trait OptionTFunctions extends AnyRef

  291. trait OptionTInstances extends OptionTInstances0

  292. trait OptionTInstances0 extends OptionTInstances1

  293. trait OptionTInstances1 extends OptionTInstances2

  294. trait OptionTInstances2 extends OptionTInstances3

  295. trait OptionTInstances3 extends AnyRef

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

    Ordered sequences, based on scalaz.FingerTree

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

    Safer version of scala.math.Ordering.

  298. sealed abstract class Ordering extends AnyRef

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

  299. trait OrderingFunctions extends AnyRef

  300. trait OrderingInstances extends AnyRef

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

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

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

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

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

  305. trait PLensFamilyFunctions extends PLensInstances

  306. trait PLensFunctions extends PLensFamilyFunctions with PLensInstances

  307. trait PLensInstances extends AnyRef

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

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

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

    Universally quantified scalaz.Semigroup.

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

    Universally quantified scalaz.Monoid.

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

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

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

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

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

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

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

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

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

  320. trait ReaderWriterStateTFunctions extends AnyRef

  321. trait ReaderWriterStateTInstances extends IndexedReaderWriterStateTInstances

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

  323. trait ReducerFunctions extends AnyRef

  324. trait ReducerInstances extends AnyRef

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

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

  326. trait RepresentableInstances extends AnyRef

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

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

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

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

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

  331. trait Semigroup[F] extends AnyRef

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

  332. trait Show[F] extends AnyRef

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

  333. trait SinkInstances extends AnyRef

  334. trait SourceInstances extends AnyRef

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

    A scalaz.Category permitting products.

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

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

  337. trait StateFunctions extends IndexedStateFunctions

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

    StateT Monad Transformer

    StateT Monad Transformer

    An introduction to the State Monad

  339. trait StateTFunctions extends IndexedStateTFunctions

  340. trait StateTInstances extends StateTInstances0

  341. trait StateTInstances0 extends StateTInstances1

  342. trait StateTInstances1 extends IndexedStateTInstances

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

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

  345. trait StoreTFunctions extends IndexedStoreTFunctions

  346. trait StoreTInstances extends StoreTInstances0

  347. trait StoreTInstances0 extends StoreTInstances1

  348. trait StoreTInstances1 extends StoreTInstances2

  349. trait StoreTInstances2 extends IndexedStoreTInstances

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

    StreamT monad transformer.

  351. trait StreamTInstances extends StreamTInstances0

  352. trait StreamTInstances0 extends StreamTInstances1

  353. trait StreamTInstances1 extends StreamTInstances2

  354. trait StreamTInstances2 extends AnyRef

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

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

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

  358. trait TrampolineInstances extends AnyRef

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

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

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

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

  361. sealed trait Tree[A] extends AnyRef

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

  362. trait TreeFunctions extends AnyRef

  363. trait TreeInstances extends AnyRef

  364. sealed trait TreeLoc[A] extends AnyRef

    A rose-tree zipper.

  365. trait TreeLocFunctions extends AnyRef

  366. trait TreeLocInstances extends AnyRef

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

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

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

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

  371. trait Unapply2_0 extends AnyRef

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

    Unapply a covariant type constructor, maintaining the covariance

  373. trait UnapplyCo_0 extends UnapplyCo_1

  374. trait UnapplyCo_1 extends UnapplyCo_2

  375. trait UnapplyCo_2 extends UnapplyCo_3

  376. trait UnapplyCo_3 extends AnyRef

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

  378. trait Unapply_0 extends Unapply_1

  379. trait Unapply_1 extends Unapply_2

  380. trait Unapply_2 extends Unapply_3

  381. trait Unapply_3 extends Unapply_4

  382. trait Unapply_4 extends AnyRef

  383. trait UnionTypes extends AnyRef

    Union types using Curry-Howard isomorphism

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

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

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

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

  387. trait UnwriterTFunctions extends AnyRef

  388. trait UnwriterTInstances extends UnwriterTInstances0

  389. trait UnwriterTInstances0 extends UnwriterTInstances1

  390. trait UnwriterTInstances1 extends UnwriterTInstances2

  391. trait UnwriterTInstances2 extends AnyRef

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

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

    Represents either:

  394. trait ValidationFunctions extends AnyRef

  395. trait ValidationInstances extends ValidationInstances0

  396. trait ValidationInstances0 extends ValidationInstances1

  397. trait ValidationInstances1 extends ValidationInstances2

  398. trait ValidationInstances2 extends ValidationInstances3

  399. trait ValidationInstances3 extends AnyRef

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

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

    Call by value

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

    View of the left end of a sequence.

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

    View of the right end of a sequence.

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

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

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

  407. trait WriterTFunctions extends AnyRef

  408. trait WriterTInstance5 extends WriterTInstances6

  409. trait WriterTInstances extends WriterTInstances0

  410. trait WriterTInstances0 extends WriterTInstances1

  411. trait WriterTInstances1 extends WriterTInstances2

  412. trait WriterTInstances10 extends WriterTInstances11

  413. trait WriterTInstances11 extends WriterTInstances12

  414. trait WriterTInstances12 extends AnyRef

  415. trait WriterTInstances2 extends WriterTInstances3

  416. trait WriterTInstances3 extends WriterTInstances4

  417. trait WriterTInstances4 extends WriterTInstance5

  418. trait WriterTInstances6 extends WriterTInstances7

  419. trait WriterTInstances7 extends WriterTInstances8

  420. trait WriterTInstances8 extends WriterTInstances9

  421. trait WriterTInstances9 extends WriterTInstances10

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

    Functors that annihilate each other.

  423. trait ZapInstances extends AnyRef

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

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

  426. trait ZipperFunctions extends AnyRef

  427. trait ZipperInstances extends AnyRef

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

    Represents disjunction.

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

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

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

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

    A scalaz.NaturalTransformation[F, G].

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

  434. type ⊤ = Any

  435. type ⊥ = Nothing

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

  437. trait Enumerator[F[_]] extends AnyRef

    An Enumerator[F] feeds data from an F to an iteratee

  438. sealed trait Input[E] extends AnyRef

    The input to an iteratee.

  439. sealed trait IterV[E, A] extends AnyRef

    A pure iteratee computation which is either done or needs more input

  440. sealed trait IterVM[M[+_], E, A] extends AnyRef

    Monadic Iteratees

  441. case class Iteratee[M[+_], E, A](value: M[IterVM[M, E, A]]) extends Product with Serializable

    Annotations
    @deprecated
    Deprecated

    (Since version 7.0.0) Scalaz 6 compatibility. Migrate to scalaz.iteratee.

  442. 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 Adjunction extends AdjunctionInstances with AdjunctionFunctions

  2. object Alpha extends AlphaFunctions with AlphaInstances

  3. object Applicative

  4. object ApplicativePlus

  5. object Apply

  6. object Arrow

  7. object BKTree extends BKTreeFunctions with BKTreeInstances

  8. object Bifoldable

  9. object Bifunctor

  10. object BijectionT extends BijectionTFunctions with BijectionTInstances

  11. object Bind

  12. object Bitraverse

  13. object BuildInfo extends Product with Serializable

  14. object CaseInsensitive extends CaseInsensitiveInstances

  15. object Catchable

  16. object Category

  17. object CharSet extends CharSetFunctions

  18. object Choice

  19. object Cobind

  20. object Codensity

  21. object Cofree extends CofreeFunctions with CofreeInstances with Serializable

  22. object Cohoist

  23. object Cojoin

  24. object Cokleisli extends CokleisliFunctions with CokleisliInstances

  25. object Comonad

  26. object ComonadStore

  27. object ComonadTrans

  28. object Compose

  29. object Cont extends IndexedContsTFunctions with IndexedContsTInstances

  30. object ContT extends IndexedContsTFunctions with IndexedContsTInstances

  31. object Contravariant

  32. object Conts extends IndexedContsTFunctions with IndexedContsTInstances

  33. object ContsT extends IndexedContsTFunctions with IndexedContsTInstances

  34. object Coproduct extends CoproductFunctions with CoproductInstances0

  35. object Cord

  36. object Cozip

  37. object DList extends DListFunctions with DListInstances

  38. object Diev extends DievInstances with DievFunctions

  39. object DievInterval

  40. object Digit extends DigitFunctions with DigitInstances

  41. object Distributive extends DistributiveFunctions

  42. object Dual extends DualInstances

  43. object Each

  44. object Either3

  45. object EitherT extends EitherTFunctions with EitherTInstances

  46. object Endo extends EndoFunctions with EndoInstances

  47. object Enum

  48. object EphemeralStream extends EphemeralStreamFunctions with EphemeralStreamInstances

  49. object Equal

  50. object FingerTree extends FingerTreeInstances with FingerTreeFunctions

  51. object FoldCase extends FoldCaseInstances

  52. object Foldable

  53. object Foldable1

  54. object Forall extends Foralls

  55. object Free extends FreeFunctions with FreeInstances

  56. object Functor

  57. object Generator extends Generators

  58. object Heap extends HeapFunctions with HeapInstances

  59. object Hoist

  60. val IRWS: IndexedReaderWriterState.type

  61. val IRWST: IndexedReaderWriterStateT.type

  62. object Id extends IdInstances

  63. object IdT extends IdTFunctions with IdTInstances with Serializable

  64. object ImmutableArray extends ImmutableArrayFunctions

  65. object IndSeq

  66. object Index

  67. object IndexedCont extends IndexedContsTFunctions with IndexedContsTInstances

  68. object IndexedContT extends IndexedContsTFunctions with IndexedContsTInstances

  69. object IndexedConts extends IndexedContsTFunctions with IndexedContsTInstances

  70. object IndexedContsT extends IndexedContsTFunctions with IndexedContsTInstances

  71. object IndexedReaderWriterState extends ReaderWriterStateTFunctions with ReaderWriterStateTInstances

  72. object IndexedReaderWriterStateT extends ReaderWriterStateTFunctions with ReaderWriterStateTInstances

  73. object IndexedState extends StateFunctions

  74. object IndexedStateT extends StateTFunctions with StateTInstances

  75. object IndexedStore

  76. object IndexedStoreT extends StoreTFunctions with StoreTInstances

  77. object Injectivity

  78. object InsertionMap extends InsertionMapFunctions with InsertionMapInstances

  79. object IsEmpty

  80. object Isomorphism extends Isomorphisms

  81. object Kleisli extends KleisliFunctions with KleisliInstances

  82. object LazyEither extends LazyEitherFunctions with LazyEitherInstances

  83. object LazyEitherT extends LazyEitherTFunctions with LazyEitherTInstances

  84. object LazyOption extends LazyOptionFunctions with LazyOptionInstances

  85. object LazyOptionT extends LazyOptionTFunctions with LazyOptionTInstances

  86. object LazyTuple extends LazyTupleFunctions

  87. object LazyTuple2 extends LazyTuple2Instances

  88. object LazyTuple3 extends LazyTuple3Instances

  89. object LazyTuple4 extends LazyTuple4Instances

  90. object Leibniz extends LeibnizInstances with LeibnizFunctions

  91. object Length

  92. object Lens extends LensFunctions with LensInstances

  93. object LensFamily extends LensFunctions with LensInstances

  94. object Liskov extends LiskovInstances with LiskovFunctions

  95. object ListT extends ListTInstances with Serializable

  96. object Memo extends MemoFunctions with MemoInstances

  97. object MetricSpace

  98. object Monad

  99. object MonadListen

  100. object MonadPartialOrder extends MonadPartialOrderFunctions

  101. object MonadPlus

  102. object MonadReader

  103. object MonadState

  104. object MonadTell

  105. object MonadTrans

  106. object Monoid

  107. object Name

  108. object NaturalTransformation extends NaturalTransformations

  109. object Need

  110. object NonEmptyList extends NonEmptyListFunctions with NonEmptyListInstances

  111. object Nondeterminism

  112. object OptionT extends OptionTFunctions with OptionTInstances with Serializable

  113. object OrdSeq

  114. object Order

  115. object Ordering extends OrderingFunctions with OrderingInstances

  116. object PLens extends PLensFunctions with PLensInstances

  117. object PLensFamily extends PLensFunctions with PLensInstances

  118. object Plus

  119. object PlusEmpty

  120. object Profunctor

  121. val RWS: ReaderWriterState.type

  122. val RWST: ReaderWriterStateT.type

  123. object Reader

  124. object ReaderWriterState extends ReaderWriterStateTFunctions with ReaderWriterStateTInstances

  125. object ReaderWriterStateT extends ReaderWriterStateTFunctions with ReaderWriterStateTInstances

  126. object Reducer extends ReducerFunctions with ReducerInstances

  127. object Representable extends RepresentableInstances

  128. object Rope

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

  130. object Semigroup

  131. object Show

  132. object Sink extends SinkInstances

  133. object Source extends SourceInstances

  134. object Split

  135. object State extends StateFunctions

  136. object StateT extends StateTFunctions with StateTInstances

  137. object Store

  138. object StoreT extends StoreTFunctions with StoreTInstances

  139. object StreamT extends StreamTInstances

  140. object Tag

  141. object Tags

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

  142. object Trampoline extends TrampolineInstances

  143. object Traverse

  144. object Traverse1

  145. object Tree extends TreeFunctions with TreeInstances

  146. object TreeLoc extends TreeLocFunctions with TreeLocInstances

  147. object Unapply extends Unapply_0

  148. object Unapply2 extends Unapply2_0

  149. object Unapply21

  150. object UnapplyCo extends UnapplyCo_0

  151. object UnapplyProduct

  152. object UnionTypes extends UnionTypes

  153. object UnitReducer

  154. object Unwriter

  155. object UnwriterT extends UnwriterTFunctions with UnwriterTInstances

  156. object Unzip

  157. object Validation extends ValidationFunctions with ValidationInstances

  158. object Value extends Serializable

  159. object Writer

  160. object WriterT extends WriterTFunctions with WriterTInstances

  161. object Zap extends ZapInstances

  162. object Zip

  163. object Zipper extends ZipperFunctions with ZipperInstances

  164. object \/ extends DisjunctionInstances with DisjunctionFunctions

  165. package concurrent

  166. package effect

  167. package example

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

  169. package iteratee

  170. package scalacheck

  171. package std

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

  172. package syntax

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

  173. package xml

Deprecated Value Members

  1. object IterV

    Annotations
    @deprecated
    Deprecated

    (Since version 7.0.0) Scalaz 6 compatibility. Migrate to scalaz.iteratee.

Inherited from AnyRef

Inherited from Any

Ungrouped