# NOT RUN {
# Just returns an expression
unknown()
# Of course, true!
is_unknown(unknown())
# Create a range with a minimum of 1
# and an unknown maximum
range <- c(1, unknown())
range
# The first value is known, the
# second is not
is_unknown(range)
# mtry()'s maximum value is not known at
# creation time
has_unknowns(mtry())
# }
Run the code above in your browser using DataLab