-
Notifications
You must be signed in to change notification settings - Fork 0
/
DESCRIPTION
90 lines (90 loc) · 1.96 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
Package: cppcontainers
Type: Package
Title: 'C++' Standard Template Library Containers
Version: 1.0.2
Authors@R: person("Christian", "Düben", email = "[email protected]", role = c("aut", "cre"))
Description: Use 'C++' Standard Template Library containers interactively in R. Includes sets, unordered sets, multisets, unordered multisets, maps,
unordered maps, multimaps, unordered multimaps, stacks, queues, priority queues, vectors, deques, forward lists, and lists.
Encoding: UTF-8
URL: https://github.com/cdueben/cppcontainers
BugReports: https://github.com/cdueben/cppcontainers/issues
License: MIT + file LICENSE
Imports: base (>= 4.0.0), methods, Rcpp
LinkingTo: Rcpp
SystemRequirements: C++20
RoxygenNote: 7.3.2
Collate:
'RcppExports.R'
'utils.R'
'classes.R'
'assign.R'
'at.R'
'back.R'
'bucket_count.R'
'capacity.R'
'clear.R'
'contains.R'
'count.R'
'deque.R'
'emplace.R'
'emplace_after.R'
'emplace_back.R'
'emplace_front.R'
'empty.R'
'erase.R'
'erase_after.R'
'flip.R'
'forward_list.R'
'front.R'
'insert.R'
'insert_after.R'
'insert_or_assign.R'
'list.R'
'load_factor.R'
'map.R'
'max_bucket_count.R'
'max_load_factor.R'
'max_size.R'
'merge.R'
'multimap.R'
'multiset.R'
'operators.R'
'pop.R'
'pop_back.R'
'pop_front.R'
'print.R'
'priority_queue.R'
'push.R'
'push_back.R'
'push_front.R'
'queue.R'
'rehash.R'
'remove..R'
'reserve.R'
'resize.R'
'reverse.R'
'set.R'
'show.R'
'shrink_to_fit.R'
'size.R'
'sort.R'
'sorting.R'
'splice.R'
'splice_after.R'
'stack.R'
'to_r.R'
'top.R'
'try_emplace.R'
'type.R'
'unique.R'
'unordered_map.R'
'unordered_multimap.R'
'unordered_multiset.R'
'unordered_set.R'
'vector.R'
Suggests:
knitr,
rmarkdown,
testthat (>= 3.0.0)
VignetteBuilder: knitr
Config/testthat/edition: 3