1 // Licensed to the Apache Software Foundation (ASF) under one
2 // or more contributor license agreements.  See the NOTICE file
3 // distributed with this work for additional information
4 // regarding copyright ownership.  The ASF licenses this file
5 // to you under the Apache License, Version 2.0 (the
6 // "License"); you may not use this file except in compliance
7 // with the License.  You may obtain a copy of the License at
8 //
9 //   http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing,
12 // software distributed under the License is distributed on an
13 // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14 // KIND, either express or implied.  See the License for the
15 // specific language governing permissions and limitations
16 // under the License.
17 
18 #pragma once
19 
20 // IWYU pragma: begin_exports
21 
22 #include <cstdint>
23 #include <memory>
24 #include <string>
25 #include <type_traits>
26 #include <utility>
27 #include <vector>
28 
29 #include "arrow/array/data.h"
30 #include "arrow/buffer.h"
31 #include "arrow/chunked_array.h"
32 #include "arrow/compute/exec.h"
33 #include "arrow/compute/function.h"
34 #include "arrow/compute/kernel.h"
35 #include "arrow/compute/kernels/codegen_internal.h"
36 #include "arrow/compute/registry.h"
37 #include "arrow/datum.h"
38 #include "arrow/memory_pool.h"
39 #include "arrow/status.h"
40 #include "arrow/type.h"
41 #include "arrow/type_traits.h"
42 #include "arrow/util/checked_cast.h"
43 #include "arrow/util/logging.h"
44 #include "arrow/util/macros.h"
45 #include "arrow/util/string_view.h"
46 
47 // IWYU pragma: end_exports
48 
49 namespace arrow {
50 
51 using internal::checked_cast;
52 using internal::checked_pointer_cast;
53 
54 }  // namespace arrow
55