File: RcppExports.R

package info (click to toggle)
r-cran-triebeard 0.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 392 kB
  • sloc: cpp: 1,095; sh: 13; makefile: 2; ansic: 1
file content (163 lines) | stat: -rw-r--r-- 4,615 bytes parent folder | download
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
# Generated by using Rcpp::compileAttributes() -> do not edit by hand
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393

add_trie_string <- function(trie, keys, values) {
    invisible(.Call(`_triebeard_add_trie_string`, trie, keys, values))
}

add_trie_integer <- function(trie, keys, values) {
    invisible(.Call(`_triebeard_add_trie_integer`, trie, keys, values))
}

add_trie_numeric <- function(trie, keys, values) {
    invisible(.Call(`_triebeard_add_trie_numeric`, trie, keys, values))
}

add_trie_logical <- function(trie, keys, values) {
    invisible(.Call(`_triebeard_add_trie_logical`, trie, keys, values))
}

remove_trie_string <- function(trie, keys) {
    invisible(.Call(`_triebeard_remove_trie_string`, trie, keys))
}

remove_trie_integer <- function(trie, keys) {
    invisible(.Call(`_triebeard_remove_trie_integer`, trie, keys))
}

remove_trie_numeric <- function(trie, keys) {
    invisible(.Call(`_triebeard_remove_trie_numeric`, trie, keys))
}

remove_trie_logical <- function(trie, keys) {
    invisible(.Call(`_triebeard_remove_trie_logical`, trie, keys))
}

radix_create_string <- function(keys, values) {
    .Call(`_triebeard_radix_create_string`, keys, values)
}

radix_create_integer <- function(keys, values) {
    .Call(`_triebeard_radix_create_integer`, keys, values)
}

radix_create_numeric <- function(keys, values) {
    .Call(`_triebeard_radix_create_numeric`, keys, values)
}

radix_create_logical <- function(keys, values) {
    .Call(`_triebeard_radix_create_logical`, keys, values)
}

get_keys_string <- function(radix) {
    .Call(`_triebeard_get_keys_string`, radix)
}

get_keys_integer <- function(radix) {
    .Call(`_triebeard_get_keys_integer`, radix)
}

get_keys_numeric <- function(radix) {
    .Call(`_triebeard_get_keys_numeric`, radix)
}

get_keys_logical <- function(radix) {
    .Call(`_triebeard_get_keys_logical`, radix)
}

get_values_string <- function(radix) {
    .Call(`_triebeard_get_values_string`, radix)
}

get_values_integer <- function(radix) {
    .Call(`_triebeard_get_values_integer`, radix)
}

get_values_numeric <- function(radix) {
    .Call(`_triebeard_get_values_numeric`, radix)
}

get_values_logical <- function(radix) {
    .Call(`_triebeard_get_values_logical`, radix)
}

greedy_string <- function(radix, to_match, include_keys) {
    .Call(`_triebeard_greedy_string`, radix, to_match, include_keys)
}

greedy_integer <- function(radix, to_match, include_keys) {
    .Call(`_triebeard_greedy_integer`, radix, to_match, include_keys)
}

greedy_numeric <- function(radix, to_match, include_keys) {
    .Call(`_triebeard_greedy_numeric`, radix, to_match, include_keys)
}

greedy_logical <- function(radix, to_match, include_keys) {
    .Call(`_triebeard_greedy_logical`, radix, to_match, include_keys)
}

radix_len_string <- function(radix) {
    .Call(`_triebeard_radix_len_string`, radix)
}

radix_len_integer <- function(radix) {
    .Call(`_triebeard_radix_len_integer`, radix)
}

radix_len_numeric <- function(radix) {
    .Call(`_triebeard_radix_len_numeric`, radix)
}

radix_len_logical <- function(radix) {
    .Call(`_triebeard_radix_len_logical`, radix)
}

longest_string <- function(radix, to_match, include_keys) {
    .Call(`_triebeard_longest_string`, radix, to_match, include_keys)
}

longest_integer <- function(radix, to_match, include_keys) {
    .Call(`_triebeard_longest_integer`, radix, to_match, include_keys)
}

longest_numeric <- function(radix, to_match, include_keys) {
    .Call(`_triebeard_longest_numeric`, radix, to_match, include_keys)
}

longest_logical <- function(radix, to_match, include_keys) {
    .Call(`_triebeard_longest_logical`, radix, to_match, include_keys)
}

prefix_string <- function(radix, to_match, include_keys) {
    .Call(`_triebeard_prefix_string`, radix, to_match, include_keys)
}

prefix_integer <- function(radix, to_match, include_keys) {
    .Call(`_triebeard_prefix_integer`, radix, to_match, include_keys)
}

prefix_numeric <- function(radix, to_match, include_keys) {
    .Call(`_triebeard_prefix_numeric`, radix, to_match, include_keys)
}

prefix_logical <- function(radix, to_match, include_keys) {
    .Call(`_triebeard_prefix_logical`, radix, to_match, include_keys)
}

trie_str_string <- function(radix) {
    invisible(.Call(`_triebeard_trie_str_string`, radix))
}

trie_str_integer <- function(radix) {
    invisible(.Call(`_triebeard_trie_str_integer`, radix))
}

trie_str_numeric <- function(radix) {
    invisible(.Call(`_triebeard_trie_str_numeric`, radix))
}

trie_str_logical <- function(radix) {
    invisible(.Call(`_triebeard_trie_str_logical`, radix))
}