List names of all pins in a board. This is a low-level function; use
pin_search() to get more data about each pin in a convenient form.
pin_list(board, ...)A pin board, created by board_folder(), board_connect(),
board_url() or another board_ function.
Other arguments passed on to methods
A character vector
board <- board_temp()
board %>% pin_write(1:5, "x")
#> Guessing `type = 'rds'`
#> Creating new version '20250514T201650Z-87646'
#> Writing to pin 'x'
board %>% pin_write(letters, "y")
#> Guessing `type = 'rds'`
#> Creating new version '20250514T201650Z-facd1'
#> Writing to pin 'y'
board %>% pin_write(runif(20), "z")
#> Guessing `type = 'rds'`
#> Creating new version '20250514T201650Z-7baf6'
#> Writing to pin 'z'
board %>% pin_list()
#> [1] "x" "y" "z"