Nothing
Code
stabilize_lst(NULL, .allow_null = FALSE)
Condition
Error:
! `NULL` must not be <NULL>.
Code
wrapped_stabilize_lst(NULL, .allow_null = FALSE)
Condition
Error in `wrapped_stabilize_lst()`:
! `val` must not be <NULL>.
Code
stabilize_lst(list(foo = "a"), name = specify_chr_scalar())
Condition
Error:
! `list(foo = "a")` must contain element "name".
Code
wrapped_stabilize_lst(list(foo = "a"), name = specify_chr_scalar())
Condition
Error in `wrapped_stabilize_lst()`:
! `val` must contain element "name".
Code
stabilize_lst(list(count = "not-an-int"), count = specify_int_scalar())
Condition
Error:
! `list(count = "not-an-int")[["count"]]` <character> must be coercible to <integer>
x Can't convert some values due to incompatible values.
* Locations: 1
Code
stabilize_lst(list(a = 1L, b = 2L))
Condition
Error:
! `list(a = 1L, b = 2L)` must not contain extra named elements.
x Extra elements: "a" and "b"
Code
wrapped_stabilize_lst(list(a = 1L, b = 2L))
Condition
Error in `wrapped_stabilize_lst()`:
! `val` must not contain extra named elements.
x Extra elements: "a" and "b"
Code
stabilize_lst(list(1L, 2L))
Condition
Error:
! `list(1L, 2L)` must not contain unnamed elements.
x Unnamed positions: 1 and 2
Code
wrapped_stabilize_lst(list(1L, 2L))
Condition
Error in `wrapped_stabilize_lst()`:
! `val` must not contain unnamed elements.
x Unnamed positions: 1 and 2
Code
stabilize_lst(list(a = 1L), .named = specify_int_scalar(), .min_size = 2)
Condition
Error:
! `list(a = 1L)` must have size >= 2.
x 1 is too small.
Code
stabilize_lst(list(aes = list(x = mtcars, y = "hp")), aes = spec_aes)
Condition
Error:
! Can't coerce `list(aes = list(x = mtcars, y = "hp"))[["aes"]][["x"]]` <data.frame> to <character>.
Code
stabilize_lst(list(a = 1L, a = 2L), .named = specify_int_scalar())
Condition
Error:
! `list(a = 1L, a = 2L)` must not contain duplicate names.
x Duplicate name: "a"
Code
wrapped_stabilize_lst(list(a = 1L, a = 2L), .named = specify_int_scalar())
Condition
Error in `wrapped_stabilize_lst()`:
! `val` must not contain duplicate names.
x Duplicate name: "a"
Code
stabilize_lst(list(a = 1L, b = 2L, a = 3L, b = 4L), .named = specify_int_scalar())
Condition
Error:
! `list(a = 1L, b = 2L, a = 3L, b = 4L)` must not contain duplicate names.
x Duplicate names: "a" and "b"
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.