Skip to content

Commit

Permalink
add “see also” links
Browse files Browse the repository at this point in the history
  • Loading branch information
davidchambers committed Feb 17, 2019
1 parent 6d91e83 commit a2bbf1d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1988,6 +1988,8 @@
//.
//. This function is derived from [`reduce`](#reduce).
//.
//. See also [`any`](#any) and [`none`](#none).
//.
//. ```javascript
//. > all (Number.isInteger, [])
//. true
Expand All @@ -2011,6 +2013,8 @@
//.
//. This function is derived from [`reduce`](#reduce).
//.
//. See also [`all`](#all) and [`none`](#none).
//.
//. ```javascript
//. > any (Number.isInteger, [])
//. false
Expand All @@ -2035,6 +2039,8 @@
//. This function is derived from [`any`](#any). `none (pred, foldable)` is
//. equivalent to `!(any (pred, foldable))`.
//.
//. See also [`all`](#all).
//.
//. ```javascript
//. > none (Number.isInteger, [])
//. true
Expand Down

0 comments on commit a2bbf1d

Please sign in to comment.