R6 Reference Class Based Data Structures
R6DS: provides reference classes implementing some useful data stuctur...
The RBST reference class
The RDeque reference class
The RDict reference class
The RDLL reference class
The RQueue reference class
The RSet reference class
The RStack reference class
Show the version number of some information.
Provides reference classes implementing some useful data structures. The package implements these data structures by using the reference class R6. Therefore, the classes of the data structures are also reference classes which means that their instances are passed by reference. The implemented data structures include stack, queue, double-ended queue, doubly linked list, set, dictionary and binary search tree. See for example <https://en.wikipedia.org/wiki/Data_structure> for more information about the data structures.