Skip to content

Commit

Permalink
Merge pull request #4525 from pera/pera-patch-2
Browse files Browse the repository at this point in the history
Update flatMapF in nomenclature.md
  • Loading branch information
danicheg authored Oct 13, 2023
2 parents cda3f0c + 337a14a commit 4d9ab67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/nomenclature.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ For convenience, in these types we use the symbol `OT` to abbreviate `OptionT`.
| `OT[F, A] => (A => Option[B]) => OT[F, B]` | `mapFilter` | `F: Functor`
| `OT[F, A] => B => (A => B) => F[B]` | `fold` or `cata`
| `OT[F, A] => (A => OT[F, B]) => OT[F,B]` | `flatMap`
| `OT[F, A] => (A => F[Option[B]]) => F[B]` | `flatMapF` | `F: Monad` |
| `OT[F, A] => (A => F[Option[B]]) => OT[F,B]` | `flatMapF` | `F: Monad` |
| `OT[F, A] => A => F[A]` | `getOrElse` | `F: Functor` |
| `OT[F, A] => F[A] => F[A]` | `getOrElseF` | `F: Monad` |
| `OT[F, A] => OT[F, A] => OT[F, A]` |
Expand Down

0 comments on commit 4d9ab67

Please sign in to comment.