Skip to content

Commit

Permalink
version 2.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
gcanti committed Oct 12, 2020
1 parent 98eca0d commit 69679dd
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 4 deletions.
32 changes: 28 additions & 4 deletions docs/modules/IOEither.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ Added in v2.0.0
- [getOrElseW](#getorelsew)
- [instances](#instances)
- [Alt](#alt-1)
- [Applicative](#applicative)
- [ApplicativePar](#applicativepar)
- [ApplicativeSeq](#applicativeseq)
- [Bifunctor](#bifunctor-1)
- [Functor](#functor-1)
- [Monad](#monad-1)
Expand All @@ -75,6 +76,7 @@ Added in v2.0.0
- [getIOValidation](#getiovalidation)
- [getSemigroup](#getsemigroup)
- [ioEither](#ioeither)
- [~~Applicative~~](#applicative)
- [model](#model)
- [IOEither (interface)](#ioeither-interface)
- [utils](#utils)
Expand Down Expand Up @@ -487,15 +489,25 @@ export declare const Alt: Alt2<'IOEither'>

Added in v2.7.0

## Applicative
## ApplicativePar

**Signature**

```ts
export declare const Applicative: Applicative2<'IOEither'>
export declare const ApplicativePar: Applicative2<'IOEither'>
```

Added in v2.7.0
Added in v2.8.4

## ApplicativeSeq

**Signature**

```ts
export declare const ApplicativeSeq: Applicative2<'IOEither'>
```

Added in v2.8.4

## Bifunctor

Expand Down Expand Up @@ -659,6 +671,18 @@ export declare const ioEither: Monad2<'IOEither'> &

Added in v2.0.0

## ~~Applicative~~

Use `ApplicativePar` instead

**Signature**

```ts
export declare const Applicative: Applicative2<'IOEither'>
```

Added in v2.7.0

# model

## IOEither (interface)
Expand Down
1 change: 1 addition & 0 deletions src/IOEither.ts
Original file line number Diff line number Diff line change
Expand Up @@ -537,6 +537,7 @@ export const ApplicativeSeq: Applicative2<URI> = {
* Use `ApplicativePar` instead
*
* @since 2.7.0
* @category instances
* @deprecated
*/
export const Applicative: Applicative2<URI> = ApplicativePar
Expand Down

0 comments on commit 69679dd

Please sign in to comment.