View source: R/30-api-flexseq-core.R
| unlist.flexseq | R Documentation |
Convenience wrapper around base::unlist() over as.list().
## S3 method for class 'flexseq'
unlist(x, recursive = TRUE, use.names = TRUE)
x |
A |
recursive |
Passed through to |
use.names |
Passed through to |
For priority_queue, this unwraps queue entries to payload items before
unlisting (equivalent to unlist(as.list(x, drop_meta = TRUE), ...)).
Inherited by ordered_sequence and interval_index through the shared
class stack.
An atomic vector built from as.list.flexseq().
x <- flexseq(1, 2, 3)
unlist(x)
q <- priority_queue("a", "b", priorities = c(2, 1))
unlist(q)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.