-
Notifications
You must be signed in to change notification settings - Fork 917
/
doxygen_groups.h
176 lines (173 loc) · 5.26 KB
/
doxygen_groups.h
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
167
168
169
170
171
172
173
174
175
176
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file
* @brief Doxygen group definitions
*/
// This header is only processed by doxygen and does
// not need to be included in any source file.
// Below are the main groups that doxygen uses to build
// the Modules page in the specified order.
//
// To add a new API to an existing group, just use the
// @ingroup tag to the API's doxygen comment.
// Add a new group by first specifying in the hierarchy below.
/**
* @defgroup cudf_classes Classes
* @{
* @defgroup column_classes Column
* @{
* @defgroup column_factories Factories
* @defgroup strings_classes Strings
* @defgroup dictionary_classes Dictionary
* @defgroup timestamp_classes Timestamp
* @defgroup lists_classes Lists
* @defgroup structs_classes Structs
* @}
* @defgroup table_classes Table
* @defgroup scalar_classes Scalar
* @{
* @defgroup scalar_factories Factories
* @}
* @defgroup fixed_point_classes Fixed Point
* @}
* @defgroup column_apis Column and Table
* @{
* @defgroup column_copy Copying
* @{
* @defgroup copy_concatenate Concatenating
* @defgroup copy_gather Gathering
* @{
* @file cudf/copying.hpp
* @}
* @defgroup copy_scatter Scattering
* @{
* @file cudf/copying.hpp
* @}
* @defgroup copy_slice Slicing
* @{
* @file cudf/copying.hpp
* @}
* @defgroup copy_split Splitting
* @{
* @file cudf/copying.hpp
* @}
* @defgroup copy_shift Shifting
* @{
* @file cudf/copying.hpp
* @}
* @}
* @defgroup column_nullmask Bitmask Operations
* @defgroup column_sort Sorting
* @defgroup column_search Searching
* @defgroup column_hash Hashing
* @defgroup column_merge Merging
* @defgroup column_join Joining
* @defgroup column_quantiles Quantiles
* @defgroup column_aggregation Aggregation
* @{
* @defgroup aggregation_factories Aggregation Factories
* @defgroup aggregation_reduction Reduction
* @defgroup aggregation_groupby GroupBy
* @defgroup aggregation_rolling Rolling Window
* @}
* @defgroup column_transformation Transformation
* @{
* @defgroup transformation_unaryops Unary Operations
* @defgroup transformation_binaryops Binary Operations
* @defgroup transformation_transform Transform
* @defgroup transformation_replace Replacing
* @defgroup transformation_fill Filling
* @}
* @defgroup column_reshape Reshaping
* @{
* @defgroup reshape_transpose Transpose
* @}
* @defgroup column_reorder Reordering
* @{
* @defgroup reorder_partition Partitioning
* @defgroup reorder_compact Stream Compaction
* @}
* @defgroup column_interop Interop
* @{
* @defgroup interop_dlpack DLPack
* @defgroup interop_arrow Arrow
* @}
* @}
* @defgroup datetime_apis DateTime
* @{
* @defgroup datetime_extract Extracting
* @defgroup datetime_compute Compute Day
* @}
* @defgroup strings_apis Strings
* @{
* @defgroup strings_case Case
* @defgroup strings_types Character Types
* @defgroup strings_combine Combining
* @defgroup strings_contains Searching
* @defgroup strings_convert Converting
* @defgroup strings_copy Copying
* @defgroup strings_substring Substring
* @defgroup strings_find Finding
* @defgroup strings_modify Modifying
* @defgroup strings_replace Replacing
* @defgroup strings_split Splitting
* @defgroup strings_json JSON
* @}
* @defgroup dictionary_apis Dictionary
* @{
* @defgroup dictionary_encode Encoding
* @defgroup dictionary_search Searching
* @defgroup dictionary_update Updating Keys
* @}
* @defgroup io_apis IO
* @{
* @defgroup io_datasources Datasources
* @defgroup io_readers Readers
* @defgroup io_writers Writers
* @}
* @defgroup lists_apis Lists
* @{
* @defgroup lists_combine Combining
* @defgroup lists_extract Extracting
* @defgroup lists_filling Filling
* @defgroup lists_contains Searching
* @defgroup lists_gather Gathering
* @defgroup lists_elements Counting
* @defgroup lists_drop_duplicates Filtering
* @defgroup lists_sort Sorting
* @}
* @defgroup nvtext_apis NVText
* @{
* @defgroup nvtext_ngrams NGrams
* @defgroup nvtext_normalize Normalizing
* @defgroup nvtext_stemmer Stemming
* @defgroup nvtext_edit_distance Edit Distance
* @defgroup nvtext_tokenize Tokenizing
* @defgroup nvtext_replace Replacing
* @}
* @defgroup utility_apis Utilities
* @{
* @defgroup utility_types Types
* @defgroup utility_dispatcher Type Dispatcher
* @defgroup utility_bitmask Bitmask
* @defgroup utility_error Exception
* @}
* @defgroup labeling_apis Labeling
* @{
* @defgroup label_bins Bin Labeling
* @}
*/