simdjson  3.11.0
Ridiculously Fast JSON
base.h
1 #ifndef SIMDJSON_ARM64_BASE_H
2 #define SIMDJSON_ARM64_BASE_H
3 
4 #ifndef SIMDJSON_CONDITIONAL_INCLUDE
5 #include "simdjson/base.h"
6 #endif // SIMDJSON_CONDITIONAL_INCLUDE
7 
8 namespace simdjson {
12 namespace arm64 {
13 
14 class implementation;
15 
16 namespace {
17 namespace simd {
18 template <typename T> struct simd8;
19 template <typename T> struct simd8x64;
20 } // namespace simd
21 } // unnamed namespace
22 
23 } // namespace arm64
24 } // namespace simdjson
25 
26 #endif // SIMDJSON_ARM64_BASE_H
The top level simdjson namespace, containing everything the library provides.
Definition: base.h:8