cppassist  1.0.0.f4fab4f962ff
C++ sanctuary for small but powerful and frequently required, stand alone features.
value.h
Go to the documentation of this file.
1 
2 #pragma once
3 
4 
5 #include <cppassist/cppassist_api.h>
6 #include <cppassist/simd/simd.h>
7 
8 
9 namespace cppassist
10 {
11 
12 
13 template <typename T, size_t SIMD_SIZE>
14 class value;
15 
16 
17 } // namespace cppassist
18 
19 
20 #if CPPASSIST_SIMD_SIZE >= 16
22 #endif
23 
24 #if CPPASSIST_SIMD_SIZE >= 8
25 #include <cppassist/simd/value8f.h>
26 #endif
27 
28 #if CPPASSIST_SIMD_SIZE >= 4
29 #include <cppassist/simd/value4f.h>
30 #endif
31 
32 #if CPPASSIST_SIMD_SIZE >= 1
33 #include <cppassist/simd/value1.h>
34 #endif
Definition: ArgumentParser.h:12
Definition: value.h:14