Deploying to gh-pages from @ agdamsbo/FreesearchR@54dd332cd8 🚀

This commit is contained in:
agdamsbo 2025-11-19 13:25:44 +00:00
commit 6d545337de
328 changed files with 12930 additions and 1662 deletions

34
reference/pipe_string.md Normal file
View file

@ -0,0 +1,34 @@
# Reduce character vector with the native pipe operator or character string
Reduce character vector with the native pipe operator or character
string
## Usage
``` r
pipe_string(data, collapse = "|>\n")
```
## Arguments
- data:
list
## Value
character string
## Examples
``` r
list(
"mtcars",
rlang::call2(.fn = "select", !!!list(c("cyl", "disp")), .ns = "dplyr"),
rlang::call2(.fn = "default_parsing", .ns = "FreesearchR")
) |>
lapply(expression_string) |>
pipe_string() |>
expression_string("data<-")
#> [1] "data<-mtcars|>\ndplyr::select(c('cyl','disp'))|>\nFreesearchR::default_parsing()"
```