7 #ifndef LIN_CORE_TYPES_BASE_HPP_ 8 #define LIN_CORE_TYPES_BASE_HPP_ 10 #include "../config.hpp" 11 #include "../traits.hpp" 42 "Derived types to Base<...> must have valid traits");
64 constexpr
Base() =
default;
Value backed tensor interface with resizing support.
Definition: base.hpp:40
Tensor interface providing read and write access to elements.
Definition: mapping.hpp:39
constexpr size_t size() const
Definition: stream.hpp:90
constexpr size_t cols() const
Definition: dimensions.hpp:60
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr D & derived()
Definition: stream.hpp:57
constexpr Traits::elem_t & operator()(size_t i, size_t j)
Provides read and write access to tensor elements.
Definition: base.hpp:102
constexpr size_t rows() const
Definition: dimensions.hpp:56
#define LIN_ASSERT(x)
Asserts the condition x when assertions are enabled within lin.
Definition: config.hpp:22
constexpr Traits::elem_t * data()
Retrives a pointer to the element backing array.
Definition: base.hpp:77
constexpr Traits::elem_t const * data() const
Retrives a constant pointer to the element backing array.
Definition: base.hpp:88
_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
traits< D > Traits
Traits information for this type.
Definition: base.hpp:42
Definition: config.hpp:27
constexpr Traits::elem_t & operator()(size_t i)
Provides read and write access to tensor elements.
Definition: base.hpp:121
Tracks the runtime dimensions of a tensor object.
Definition: dimensions.hpp:45