7 #ifndef LIN_CORE_TYPES_CONST_BASE_HPP_ 8 #define LIN_CORE_TYPES_CONST_BASE_HPP_ 10 #include "../config.hpp" 11 #include "../traits.hpp" 42 "Derived types to ConstBase<...> must have valid traits");
Value backed, read only tensor interface.
Definition: const_base.hpp:40
Tensor interface providing read only access to elements.
Definition: stream.hpp:43
constexpr size_t size() const
Definition: stream.hpp:90
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr D & derived()
Definition: stream.hpp:57
traits< D > Traits
Traits information for this type.
Definition: const_base.hpp:42
constexpr Traits::elem_t const * data() const
Retrives a constant pointer to the element backing array.
Definition: const_base.hpp:76
#define LIN_ASSERT(x)
Asserts the condition x when assertions are enabled within lin.
Definition: config.hpp:22
constexpr Traits::elem_t const & operator()(size_t i, size_t j) const
Provides read only access to tensor elements.
Definition: const_base.hpp:90
constexpr size_t rows() const
Definition: stream.hpp:76
constexpr Traits::elem_t const & operator()(size_t i)
Provides read only access to tensor elements.
Definition: const_base.hpp:109
constexpr size_t cols() const
Definition: stream.hpp:82
_elem_t< C > elem_t
Tensor's element type.
Definition: tensor.hpp:81
Tests if a tensor type's traits are valid.
Definition: tensor.hpp:326
Definition: config.hpp:27
Tracks the runtime dimensions of a tensor object.
Definition: dimensions.hpp:45