-
Notifications
You must be signed in to change notification settings - Fork 0
/
DESCRIPTION
23 lines (23 loc) · 1.02 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Package: R6DS
Type: Package
Title: R6 Reference Class Based Data Structures
Version: 1.2.0
Authors@R: person(given="Yukai",family="Yang",email="[email protected]",role=c("aut", "cre"),comment=c(ORCID="0000-0002-2623-8549"))
Description: 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.
Depends: R (>= 3.0.0)
License: GPL-3
Encoding: UTF-8
LazyData: true
RoxygenNote: 6.1.1
URL: https://github.com/yukai-yang/R6DS
BugReports: https://github.com/yukai-yang/R6DS/issues
Imports:
R6
Suggests:
knitr,
rmarkdown
VignetteBuilder: knitr