Skip to content

Commit e63b8b6

Browse files
committed
+newline in order to render ___
1 parent cc75ebc commit e63b8b6

6 files changed

+12
-0
lines changed

docsrc/content/abstraction-alternative.fsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@
66
(**
77
Alternative
88
===========
9+
910
Applicative Functors which also have a monoid structure.
1011
___
12+
1113
Minimal complete definition
1214
---------------------------
1315
* ``return x``   /   ``result x``

docsrc/content/abstraction-applicative.fsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@
66
(**
77
Applicative
88
===========
9+
910
A functor with application, providing operations to embed pure expressions (``return``), and sequence computations and combine their results (``<*>``).
1011
___
12+
1113
Minimal complete definition
1214
---------------------------
1315
* ``return x`` &nbsp; / &nbsp; ``result x``

docsrc/content/abstraction-functor.fsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@
66
(**
77
Functor
88
=======
9+
910
The Functor abstraction is used for types that can be mapped over.
1011
___
12+
1113
Minimal complete definition
1214
---------------------------
1315
* ``map f x`` &nbsp; / &nbsp; ``(|>>) x f`` &nbsp; / &nbsp; ``(<<|) f x`` &nbsp; / &nbsp; ``(<!>) f x``

docsrc/content/abstraction-monoid.fsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
Monoid
88
======
99
Types with an associative binary operation that has an identity.
10+
1011
___
12+
1113
Minimal complete definition
1214
---------------------------
1315
* `zero``

docsrc/content/abstraction-semigroup.fsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@
55
(**
66
Semigroup
77
=========
8+
89
In mathematics, a semigroup is an algebraic structure consisting of a set together with an associative binary operation. A semigroup generalizes a monoid in that there might not exist an identity element. It also (originally) generalized a group (a monoid with all inverses) to a type where every element did not have to have an inverse, thus the name semigroup.
910
___
11+
1012
Minimal complete definition
1113
---------------------------
1214
* ``(+)`` &nbsp; / &nbsp; ``(++)``

docsrc/content/abstraction-zipapplicative.fsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
Zip Applicative (aka Non-sequential Applicative)
88
================================================
99
A functor with application, providing operations to embed pure expressions (``pur``), run computations pointwise and/or paralell and combine their results (``<.>``).
10+
1011
___
12+
1113
Minimal complete definition
1214
---------------------------
1315
* ``pur x`` &nbsp;

0 commit comments

Comments
 (0)