Checks or sets whether a SyncroSim Session
is silent or not. In
a silent session, warnings from the console are ignored.
Usage
silent(session)
# S4 method for class 'Session'
silent(session)
# S4 method for class 'missingOrNULLOrChar'
silent(session)
silent(session) <- value
# S4 method for class 'character'
silent(session) <- value
# S4 method for class 'Session'
silent(session) <- value
Examples
# \donttest{
# Set up a SyncroSim Session
mySession <- session()
# Check the silent status of a SyncroSim Session
silent(mySession)
#> [1] TRUE
# Set the silent status of a SyncroSim Session
silent(mySession) <- FALSE
# }