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.
Arguments
- board
A pin board, created by
board_folder()
,board_connect()
,board_url()
or anotherboard_
function.- ...
Other arguments passed on to methods
Examples
board <- board_temp()
board %>% pin_write(1:5, "x")
#> Guessing `type = 'rds'`
#> Creating new version '20241007T174655Z-87646'
#> Writing to pin 'x'
board %>% pin_write(letters, "y")
#> Guessing `type = 'rds'`
#> Creating new version '20241007T174655Z-facd1'
#> Writing to pin 'y'
board %>% pin_write(runif(20), "z")
#> Guessing `type = 'rds'`
#> Creating new version '20241007T174655Z-7baf6'
#> Writing to pin 'z'
board %>% pin_list()
#> [1] "x" "y" "z"