o_who(..., options, rm.ans = FALSE, unique = TRUE)o_who
and o_whos. Only names matching any of the patterns are returned.who.
See section Octave Documentation.ans
should be included in the result (FALSE) or removed (TRUE).....[Generated from Octave-
o_clear() o_who() l <- as.list(setNames(1:10, letters[1:10])) o_assign(l) o_who() stopifnot( identical(o_who(), names(l)) )
prefnames <- paste('pref', letters[1:10], sep='') o_assign( setNames(l, prefnames) ) o_who() o_who('pref*') stopifnot( identical(o_who('pref*'), prefnames) )
o_ls; o_whos