-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path_pkgdown.yml
166 lines (147 loc) · 3.78 KB
/
_pkgdown.yml
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
url: https://github.com/rpahl/container
template:
bootstrap: 5
bootswatch: cerulean
authors:
Roman Pahl:
href: https://rpahl.github.io/r-some-blog/about.html
home:
links:
- text: Visit my R blog
href: https://rpahl.github.io/r-some-blog/
- text: Visit my R packages universe
href: https://rpahl.r-universe.dev/packages/
reference:
- title: "Container"
desc: "A container can be considered a base R list with extended functionality."
contents:
- Container
- container
- clear
- clone
- container_options
- unpack
- subtitle: "add or replace"
contents:
- add
- starts_with("replace")
- "[<-.Container"
- subtitle: "extract"
contents:
- starts_with("at")
- starts_with("peek_at")
- "[.Container"
- subtitle: "inspect"
contents:
- count
- has
- has_name
- is_empty
- subtitle: "remove"
contents:
- starts_with("delete")
- starts_with("discard")
- contains("pop")
- subtitle: "update"
contents:
- rename
- update
- title: "Deque"
desc: >
Derives all Container methods.
Can also be used to mimic stacks or simple queues.
contents:
- Deque
- deque
- addleft
- peekleft
- rev
- rotate
- title: "Set, OrderedSet"
desc: >
Derives all Container methods. Set elements are always unique.
contents:
- Set
- OrderedSet
- setnew
- title: "Dict"
desc: >
Derives all Container methods. All Dict elements must be named and are
always sorted by their name.
contents:
- Dict
- dict
- title: "dict.table"
desc: >
The dict.table is a mix of a dict and a data.table and derives
all data.table and most of the dict/container methods.
contents:
- starts_with("dict.table")
- title: "Iterator"
desc: "Iterate over sequences."
contents:
- Iterable
- Iterator
- iter
- title: "Operators"
contents:
- "+.Container"
- "<.Container"
- "&.Dict"
- title: "Depecated"
desc: "Deprecated functions."
contents:
- "deprecated"
news:
releases:
- text: "Version 1.0.0"
href: https://rpahl.github.io/r-some-blog/posts/container1.0/
navbar:
structure:
left: [home, getStarted, reference, news, articles]
right: [github, stackoverflow, bluesky, blog]
components:
home:
icon: fa-home fa-lg
href: index.html
aria-label: home
getStarted:
text: "Get Started"
href: articles/v01-interactive-usage.html
articles:
text: "Articles"
menu:
- text: "Overview"
href: articles/index.html
- text: "---"
- text: "Get started"
- text: "Use container in interactive session"
href: articles/v01-interactive-usage.html
- text: "Use container for code development"
href: articles/v02-code-development.html
- text: "Manage parameter lists with dict"
href: articles/v03-parameter-list.html
- text: "Manage data columns with dict.table"
href: articles/v04-manage-data-columns.html
- text: "---"
- text: "Other"
- text: "Deque, Set, and Dict"
href: articles/v05-deque-set-dict.html
- text: "Reference semantics"
href: articles/v06-reference-semantics.html
github:
icon: fab fa-github
href: https://github.com/rpahl/container/
aria-label: github
stackoverflow:
icon: fab fa-stack-overflow
href: https://stackoverflow.com/users/8120617/rpahl
aria-label: stackoverflow
bluesky:
icon: fab fa-bluesky
href: https://bsky.app/profile/rpahl.bsky.social
aria-label: bluesky
blog:
icon: fas fa-blog
href: https://rpahl.github.io/r-some-blog/
aria-label: blog