simdjson  3.11.0
Ridiculously Fast JSON
base.h
1 #ifndef SIMDJSON_WESTMERE_BASE_H
2 #define SIMDJSON_WESTMERE_BASE_H
3 
4 #ifndef SIMDJSON_CONDITIONAL_INCLUDE
5 #include "simdjson/base.h"
6 #endif // SIMDJSON_CONDITIONAL_INCLUDE
7 
8 // The constructor may be executed on any host, so we take care not to use SIMDJSON_TARGET_WESTMERE
9 namespace simdjson {
13 namespace westmere {
14 
15 class implementation;
16 
17 namespace {
18 namespace simd {
19 
20 template <typename T> struct simd8;
21 template <typename T> struct simd8x64;
22 
23 } // namespace simd
24 } // unnamed namespace
25 
26 } // namespace westmere
27 } // namespace simdjson
28 
29 #endif // SIMDJSON_WESTMERE_BASE_H
The top level simdjson namespace, containing everything the library provides.
Definition: base.h:8