begin conversion to rst

This commit is contained in:
Stephen Diehl
2016-12-08 09:36:00 +00:00
parent fb6f00b90b
commit 60ca33fecb
12 changed files with 551 additions and 104 deletions
+83
View File
@@ -0,0 +1,83 @@
Functions
=========
.. highlight:: haskell
$
***
::
($) :: (a -> b) -> a -> b
&
***
::
(&) :: a -> (a -> b) -> b
.
***
::
(.) :: (b -> c) -> (a -> b) -> a -> c
flip
****
::
flip :: (a -> b -> c) -> b -> a -> c
on
***
::
on :: (b -> b -> c) -> (a -> b) -> a -> a -> c
const
*****
::
const :: a -> b -> a
fix
***
::
fix :: (a -> a) -> a
identity
********
::
identity :: a -> a
$!
***
::
($!) :: NFData a => (a -> b) -> a -> b
$!!
***
::
($!!) :: NFData a => (a -> b) -> a -> b
force
*****
::
force :: NFData a => a -> a