Skip to content

Commit

Permalink
Complete links of related types in the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
gusty authored and wallymathieu committed Jun 15, 2020
1 parent dc0b586 commit 685fb2a
Show file tree
Hide file tree
Showing 14 changed files with 93 additions and 77 deletions.
12 changes: 6 additions & 6 deletions docsrc/content/abstraction-alternative.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ From .Net/F#
From F#+
- ``ReaderT<'R, 'MonadPlus<'T>>``
- ``WriterT<'MonadPlus<'T * 'Monoid>>``
- ``StateT<'S,'MonadPlus<'T * 'S>>``
- ``Compose<'F<'G<'T>>>``
- ``DList<'T>``
- ``ZipList<'T>``
- [``ReaderT<'R, 'MonadPlus<'T>>``](type-readert.html)
- [``WriterT<'MonadPlus<'T * 'Monoid>>``](type-writert.html)
- [``StateT<'S,'MonadPlus<'T * 'S>>``](type-statet.html)
- [``Compose<'AlternativeF<'AlternativeG<'T>>>``](type-compose.html)
- [``DList<'T>``](type-dlist.html)
- [``ZipList<'S>``](type-ziplist.html)
[Suggest another](https://github.com/fsprojects/FSharpPlus/issues/new) concrete implementation
Expand Down
37 changes: 22 additions & 15 deletions docsrc/content/abstraction-applicative.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,21 +72,28 @@ From F#
From F#+
- ``Cont<'R,'T>``
- ``ContT<'R,'T>``
- ``Reader<'R,'T>``
- ``ReaderT<'R,'Monad<'T>>``
- ``Writer<'Monoid,'T>``
- ``WriterT<'Monad<'T * 'Monoid>>``
- ``State<'S,'T * 'S>``
- ``StateT<'S,'Monad<'T * 'S>>``
- ``Free<'Functor<'T>,'T>``
- ``NonEmptyList<'T>``
- ``ZipList<'T>``
- ``ParallelArray<'T>``
- ``Const<'C,'T>``
- ``Compose<'F<'G<'T>>>``
- ``DList<'T>``
- [``Identity<'T>``](type-identity.html)
- [``Cont<'R,'T>``](type-cont.html)
- [``ContT<'R,'T>``](type-contt.html)
- [``Reader<'R,'T>``](type-reader.html)
- [``ReaderT<'R,'Monad<'T>>``](type-readert.html)
- [``Writer<'Monoid,'T>``](type-writer.html)
- [``WriterT<'Monad<'T * 'Monoid>>``](type-writert.html)
- [``State<'S,'T * 'S>``](type-state.html)
- [``StateT<'S,'Monad<'T * 'S>>``](type-statet.html)
- [``OptionT<'Monad<option<'T>>``](type-optiont.html)
- [``SeqT<'Monad<seq<'T>>``](type-seqt.html)
- [``ListT<'Monad<list<'T>>``](type-listt.html)
- [``ResultT<'Monad<Result<'T,'TError>>``](type-resultt.html)
- [``ChoiceT<'Monad<Choice<'T,'TError>>``](type-choicet.html)
- [``Free<'Functor<'T>,'T>``](type-free.html)
- [``NonEmptyList<'T>``](type-nonempty.html)
- [``Validation<'Error,'T>``](type-validation.html)
- [``ZipList<'T>``](type-ziplist.html)
- [``ParallelArray<'T>``](type-parallelarray.html)
- [``Const<'C,'T>``](type-const.html)
- [``Compose<'ApplicativeF<'ApplicativeG<'T>>>``](type-compose.html)
- [``DList<'T>``](type-dlist.html)
- [``Vector<'T,'Dimension>``](type-vector.html)
- [``Matrix<'T,'Rows,'Columns>``](type-matrix.html)
Expand Down
2 changes: 1 addition & 1 deletion docsrc/content/abstraction-arrow.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ From .Net/F#
From F#+
- ``Kleisli<'T, 'Monad<'U>>``
- [``Kleisli<'T, 'Monad<'U>>``](type-kleisli.html)
[Suggest another](https://github.com/fsprojects/FSharpPlus/issues/new) concrete implementation
*)
4 changes: 2 additions & 2 deletions docsrc/content/abstraction-bifoldable.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ From .Net/F#
From F#+
- ``Const<'C,'T>``
- ``Validation<'err,'a>``
- [``Const<'C,'T>``](type-const.html)
- [``Validation<'err,'a>``](type-validation.html)
[Suggest another](https://github.com/fsprojects/FSharpPlus/issues/new) concrete implementation
Expand Down
3 changes: 2 additions & 1 deletion docsrc/content/abstraction-bifunctor.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ From .Net/F#
From F#+
- ``Const<'T1,'T2>``
- [``Const<'C,'T>``](type-const.html)
- [``Validation<'Error,'T>``](type-validation.html)
[Suggest another](https://github.com/fsprojects/FSharpPlus/issues/new) concrete implementation
Expand Down
2 changes: 1 addition & 1 deletion docsrc/content/abstraction-category.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ From .Net/F#
From F#+
- ``Kleisli<'T, 'Monad<'U>>``
- [``Kleisli<'T, 'Monad<'U>>``](type-kleisli.html)
[Suggest another](https://github.com/fsprojects/FSharpPlus/issues/new) concrete implementation
*)
4 changes: 2 additions & 2 deletions docsrc/content/abstraction-comonad.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ From .Net/F#
From F#+
- ``Reader<'R,'T>``
- ``Writer<'Monoid,'T>``
- [``Reader<'R,'T>``](type-reader.html)
- [``Writer<'Monoid,'T>``](type-writer.html)
[Suggest another](https://github.com/fsprojects/FSharpPlus/issues/new) concrete implementation
Expand Down
2 changes: 1 addition & 1 deletion docsrc/content/abstraction-contravariant.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ From .Net/F#
From F#+
- ``Const<'C,'T>``
- [``Const<'C,'T>``](type-const.html)
[Suggest another](https://github.com/fsprojects/FSharpPlus/issues/new) concrete implementation
Expand Down
6 changes: 3 additions & 3 deletions docsrc/content/abstraction-foldable.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ From .Net/F#
From F#+
- ``ZipList<'T>``
- ``NonEmptyList<'T>``
- ``DList<'T>``
- [``ZipList<'T>``](type-ziplist.html)
- [``NonEmptyList<'S>``](type-nonempty.html)
- [``DList<'T>``](type-dlist.html)
[Suggest another](https://github.com/fsprojects/FSharpPlus/issues/new) concrete implementation
Expand Down
43 changes: 23 additions & 20 deletions docsrc/content/abstraction-functor.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,26 +66,29 @@ From F#
From F#+
- ``Cont<'R,'T>``
- ``ContT<'R,'T>``
- ``Reader<'R,'T>``
- ``ReaderT<'R,'Monad<'T>>``
- ``Writer<'Monoid,'T>``
- ``WriterT<'Monad<'T * 'Monoid>>``
- ``State<'S,'T * 'S>``
- ``StateT<'S,'Monad<'T * 'S>>``
- ``OptionT<'Monad<option<'T>>``
- ``ResultT<'Monad<Result<'T,'TError>>``
- ``ChoiceT<'Monad<Choice<'T,'TError>>``
- ``Free<'Functor<'T>,'T>``
- ``NonEmptyList<'T>``
- ``ZipList<'T>``
- ``ParallelArray<'T>``
- ``Const<'C,'T>``
- ``Kleisli<'T, 'Monad<'U>>``
- ``Compose<'F<'G<'T>>>``
- ``Coproduct<'FunctorL<'T>,'FunctorR<'T>>``
- ``DList<'T>``
- [``Cont<'R,'T>``](type-cont.html)
- [``ContT<'R,'T>``](type-contt.html)
- [``Reader<'R,'T>``](type-reader.html)
- [``ReaderT<'R,'Monad<'T>>``](type-readert.html)
- [``Writer<'Monoid,'T>``](type-writer.html)
- [``WriterT<'Monad<'T * 'Monoid>>``](type-writert.html)
- [``State<'S,'T * 'S>``](type-state.html)
- [``StateT<'S,'Monad<'T * 'S>>``](type-statet.html)
- [``OptionT<'Monad<option<'T>>``](type-optiont.html)
- [``SeqT<'Monad<seq<'T>>``](type-seqt.html)
- [``ListT<'Monad<list<'T>>``](type-listt.html)
- [``ResultT<'Monad<Result<'T,'TError>>``](type-resultt.html)
- [``ChoiceT<'Monad<Choice<'T,'TError>>``](type-choicet.html)
- [``Free<'Functor<'T>,'T>``](type-free.html)
- [``NonEmptyList<'T>``](type-nonempty.html)
- [``Validation<'Error,'T>``](type-validation.html)
- [``ZipList<'T>``](type-ziplist.html)
- [``ParallelArray<'T>``](type-parallelarray.html)
- [``Const<'C,'T>``](type-const.html)
- [``Compose<'AlternativeF<'AlternativeG<'T>>>``](type-compose.html)
- [``DList<'T>``](type-dlist.html)
- [``Kleisli<'T, 'Monad<'U>>``](type-kleisli.html)
- [``Coproduct<'FunctorL<'T>,'FunctorR<'T>>``](type-coproduct.html)
- [``Vector<'T,'Dimension>``](type-vector.html)
- [``Matrix<'T,'Rows,'Columns>``](type-matrix.html)
Expand Down
29 changes: 17 additions & 12 deletions docsrc/content/abstraction-monad.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,18 +80,23 @@ From F#
From F#+
- ``Identity<'T>``
- ``Cont<'R,'T>``
- ``ContT<'R,'T>``
- ``Reader<'R,'T>``
- ``ReaderT<'R,'Monad<'T>>``
- ``Writer<'Monoid,'T>``
- ``WriterT<'Monad<'T * 'Monoid>>``
- ``State<'S,'T * 'S>``
- ``StateT<'S,'Monad<'T * 'S>>``
- ``Free<'Functor<'T>,'T>``
- ``NonEmptyList<'T>``
- ``DList<'T>``
- [``Identity<'T>``](type-identity.html)
- [``Cont<'R,'T>``](type-cont.html)
- [``ContT<'R,'T>``](type-contt.html)
- [``Reader<'R,'T>``](type-reader.html)
- [``ReaderT<'R,'Monad<'T>>``](type-readert.html)
- [``Writer<'Monoid,'T>``](type-writer.html)
- [``WriterT<'Monad<'T * 'Monoid>>``](type-writert.html)
- [``State<'S,'T * 'S>``](type-state.html)
- [``StateT<'S,'Monad<'T * 'S>>``](type-statet.html)
- [``OptionT<'Monad<option<'T>>``](type-optiont.html)
- [``SeqT<'Monad<seq<'T>>``](type-seqt.html)
- [``ListT<'Monad<list<'T>>``](type-listt.html)
- [``ResultT<'Monad<Result<'T,'TError>>``](type-resultt.html)
- [``ChoiceT<'Monad<Choice<'T,'TError>>``](type-choicet.html)
- [``Free<'Functor<'T>,'T>``](type-free.html)
- [``NonEmptyList<'T>``](type-nonempty.html)
- [``DList<'T>``](type-dlist.html)
[Suggest another](https://github.com/fsprojects/FSharpPlus/issues/new) concrete implementation
Expand Down
4 changes: 2 additions & 2 deletions docsrc/content/abstraction-monoid.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ From .Net/F#
From F#+
- ``ZipList<'S>``
- [``Dual<'T>](type-dual.html)
- [``ZipList<'T>``](type-ziplist.html)
- [``Dual<'T>``](type-dual.html)
- [``Endo<'T>``](type-endo.html)
- [``All``](type-all.html)
- [``Any``](type-any.html)
Expand Down
2 changes: 1 addition & 1 deletion docsrc/content/abstraction-profunctor.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ From .Net/F#
From F#+
- ``Kleisli<'T, 'Monad<'U>>``
- [``Kleisli<'T, 'Monad<'U>>``](type-kleisli.html)
[Suggest another](https://github.com/fsprojects/FSharpPlus/issues/new) concrete implementation
Expand Down
20 changes: 10 additions & 10 deletions docsrc/content/abstraction-semigroup.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,16 +58,16 @@ From .Net/F#
From F#+
- ``NonEmptyList<'S>``
- ``ZipList<'S>``
- ``Dual<'T>``
- ``Endo<'T>``
- ``All``
- ``Any``
- ``Const<'T,'U>``
- ``First<'T>``
- ``Last<'T>``
- ``DList<'T>``
- [``NonEmptyList<'S>``](type-nonempty.html)
- [``ZipList<'S>``](type-ziplist.html)
- [``Dual<'T>``](type-dual.html)
- [``Endo<'T>``](type-endo.html)
- [``All``](type-all.html)
- [``Any``](type-any.html)
- [``Const<'C,'T>``](type-const.html)
- [``First<'T>``](type-first.html)
- [``Last<'T>``](type-last.html)
- [``DList<'T>``](type-dlist.html)
- [``Vector<'T,'Dimension>``](type-vector.html)
- [``Matrix<'T,'Rows,'Columns>``](type-matrix.html)
Expand Down

0 comments on commit 685fb2a

Please sign in to comment.