stack {rstack}R Documentation

A stack data type, implemented as an R6 class

Description

Methods:

Examples

S <- stack$new()
S$push(1L)
S$peek()
S$pop()
S$size()

S$push(NULL)
S$push(iris)
colnames(S$peek())

[Package rstack version 1.0.1 Index]