Description Usage Arguments Details Value See Also Examples
View source: R/as.list.rstack.R
Converts an rstack to a list, where the top of the stack becomes the first element of the list, the second-from-top the second, and so on.
1 2 |
x |
rstack to convert. |
... |
additional arguments passed to as.list after initial conversion to list. |
Runs in O(N) time in the size of the stack, but the generated list is pre-allocated for efficiency.
a list containing the elements of the stack in top-to-bottom order.
1 2 3 4 5 6 | s <- rstack()
s <- insert_top(s, "a")
s <- insert_top(s, "b")
slist <- as.list(s)
print(slist)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.