Skip to content

Commit

Permalink
Mention that ranges are cast back to type of .i. Closes #208.
Browse files Browse the repository at this point in the history
  • Loading branch information
DavisVaughan committed Oct 25, 2024
1 parent 80e0004 commit 30bce6e
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 16 deletions.
3 changes: 2 additions & 1 deletion man-roxygen/param-before-after-slide-index.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@
#' to avoid invalid dates at the end of the month.
#'
#' The ranges that result from applying `.before` and `.after` have the same
#' 3 restrictions as `.i` itself.
#' 3 restrictions as `.i` itself, and are cast to the type of `.i` using
#' [vctrs::vec_cast()].
8 changes: 4 additions & 4 deletions man-roxygen/param-starts-stops-hop-index.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#'
#' Vectors of boundary values that make up the windows to bucket `.i` with.
#' Both `.starts` and `.stops` will be recycled to their common size, and
#' that common size will be the size of the result. Both vectors should be
#' the same type as `.i`. These boundaries are both _inclusive_, meaning
#' that the slice of `.x` that will be used in each call to `.f` is where
#' `.i >= start & .i <= stop` returns `TRUE`.
#' that common size will be the size of the result. Both vectors will be cast
#' to the type of `.i` using [vctrs::vec_cast()]. These boundaries are both
#' _inclusive_, meaning that the slice of `.x` that will be used in each call
#' to `.f` is where `.i >= start & .i <= stop` returns `TRUE`.
8 changes: 4 additions & 4 deletions man/hop_index.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions man/hop_index2.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion man/slide_index.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion man/slide_index2.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion man/summary-index.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 30bce6e

Please sign in to comment.