Skip to content

Commit

Permalink
Fix missing topics on the reference index (#627)
Browse files Browse the repository at this point in the history
* Remove invoke() from the reference index

* Remove modify_in() from map family

* Add a section for plucking

* Add rate-related functions
  • Loading branch information
yutannihilation authored and lionel- committed Feb 4, 2019
1 parent 240f7b2 commit 80280c5
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions _pkgdown.yml
Expand Up @@ -46,14 +46,12 @@ reference:
`modify()` modifies "in place", returning a vector the same type as `.x`;
`map2()` iterates over two vectors in parallel;
`pmap()` (parallel map) iterates over a list of vectors;
`imap()` (index map) is a shortcut for the common pattern `map2(x, names(x))`;
`invoke()` calls each function in a list.
`imap()` (index map) is a shortcut for the common pattern `map2(x, names(x))`.
contents:
- map2
- starts_with("modify")
- modify
- starts_with("imap")
- starts_with("lmap")
- starts_with("invoke")

- title: Predicate functionals
desc: >
Expand All @@ -69,6 +67,15 @@ reference:
- negate
- prepend

- title: Plucking
desc: >
Getting or setting a single element.
contents:
- pluck
- modify_in
- attr_getter
- "`%@%`"

- title: Other vector transforms
desc: >
A grab bag of useful tools for manipulating vectors.
Expand All @@ -92,11 +99,12 @@ reference:
- partial
- safely
- insistently
- rate_sleep
- rate-helpers

- title: Misc
contents:
- "`%||%`"
- "`%@%`"
- array_tree
- as_vector
- rbernoulli
Expand Down

0 comments on commit 80280c5

Please sign in to comment.