Skip to content

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.

Usage

pin_list(board, ...)

Arguments

board

A pin board, created by board_folder(), board_connect(), board_url() or another board_ function.

...

Other arguments passed on to methods

Value

A character vector

Examples

board <- board_temp()

board %>% pin_write(1:5, "x")
#> Guessing `type = 'rds'`
#> Creating new version '20240113T004352Z-6c18b'
#> Writing to pin 'x'
board %>% pin_write(letters, "y")
#> Guessing `type = 'rds'`
#> Creating new version '20240113T004352Z-0673f'
#> Writing to pin 'y'
board %>% pin_write(runif(20), "z")
#> Guessing `type = 'rds'`
#> Creating new version '20240113T004352Z-f1d4e'
#> Writing to pin 'z'

board %>% pin_list()
#> [1] "x" "y" "z"