tesseract++ 0.0.1
N-dimensional tensor library for embedded systems
Loading...
Searching...
No Matches
fused_vector_traits.h
Go to the documentation of this file.
1#pragma once
2
3template <typename T, my_size_t Size>
4class FusedVector; // forward declarations
5
6namespace expression
7{
8 template <typename T, my_size_t Size>
9 struct traits<FusedVector<T, Size>>
10 {
11 static constexpr bool IsPermuted = false;
12 static constexpr bool IsContiguous = true;
13 static constexpr bool IsPhysical = true;
14 };
15
16} // namespace expression
Definition fused_vector.h:9
Definition basic_expr_traits.h:4
Definition basic_expr_traits.h:6