Determines if object is a formatting list of class 'fmt_lst'.

is.flist(x)

Arguments

x

Object to test.

Value

TRUE or FALSE, depending on class of object.

Examples

# Create flist
flst <- flist("%d%b%Y", "%.1f")
is.flist(flst)
#> [1] TRUE
is.flist("A")
#> [1] FALSE