xtensor
|
View of an xexpression using strides. More...
#include <xstrided_view.hpp>
Public Member Functions | |
xstrided_view (const xstrided_view &rhs)=default | |
template<class E > | |
self_type & | operator= (const xexpression< E > &e) |
template<class E > | |
disable_xexpression< E, self_type > & | operator= (const E &e) |
template<class ST , class STEP = stepper> | |
disable_indexed_stepper_t< STEP > | stepper_begin (const ST &shape) |
template<class ST , class STEP = stepper> | |
disable_indexed_stepper_t< STEP > | stepper_end (const ST &shape, layout_type l) |
template<class ST , class STEP = stepper> | |
enable_indexed_stepper_t< STEP > | stepper_begin (const ST &shape) |
template<class ST , class STEP = stepper> | |
enable_indexed_stepper_t< STEP > | stepper_end (const ST &shape, layout_type l) |
template<class ST , class STEP = const_stepper> | |
disable_indexed_stepper_t< STEP > | stepper_begin (const ST &shape) const |
template<class ST , class STEP = const_stepper> | |
disable_indexed_stepper_t< STEP > | stepper_end (const ST &shape, layout_type l) const |
template<class ST , class STEP = const_stepper> | |
enable_indexed_stepper_t< STEP > | stepper_begin (const ST &shape) const |
template<class ST , class STEP = const_stepper> | |
enable_indexed_stepper_t< STEP > | stepper_end (const ST &shape, layout_type l) const |
template<class align , class simd , class T = xexpression_type> | |
enable_simd_interface< T, void > | store_simd (size_type i, const simd &e) |
template<class align , class requested_type = value_type, std::size_t N = xt_simd::simd_traits<requested_type>::size, class T = xexpression_type> | |
enable_simd_interface< T, simd_return_type< requested_type > > | load_simd (size_type i) const |
template<class E > | |
rebind_t< E > | build_view (E &&e) const |
const inner_backstrides_type & | backstrides () const noexcept |
Returns the backstrides of the xtrided_view_base. | |
bool | is_contiguous () const noexcept |
layout_type | layout () const noexcept |
Returns the layout of the xtrided_view_base. | |
const inner_shape_type & | shape () const noexcept |
Returns the shape of the xtrided_view_base. | |
const inner_strides_type & | strides () const noexcept |
Returns the strides of the xtrided_view_base. | |
template<class... Args> | |
reference | unchecked (Args... args) |
template<class... Args> | |
const_reference | unchecked (Args... args) const |
template<class... Args> | |
auto | unchecked (Args... args) -> reference |
Returns a reference to the element at the specified position in the view. | |
template<class... Args> | |
auto | unchecked (Args... args) const -> const_reference |
Returns a constant reference to the element at the specified position in the view. | |
template<class E = xexpression_type, class ST = storage_type> | |
std::enable_if_t< detail::provides_data_interface< E, ST >::value, pointer > | data () noexcept |
template<class E = xexpression_type, class ST = storage_type> | |
std::enable_if_t< detail::provides_data_interface< E, ST >::value, const_pointer > | data () const noexcept |
template<class E , class ST > | |
auto | data () noexcept -> std::enable_if_t< detail::provides_data_interface< E, ST >::value, pointer > |
Returns a pointer to the underlying array serving as element storage. | |
template<class E , class ST > | |
auto | data () const noexcept -> std::enable_if_t< detail::provides_data_interface< E, ST >::value, const_pointer > |
Returns a constant pointer to the underlying array serving as element storage. | |
size_type | data_offset () const noexcept |
Returns the offset to the first element in the view. | |
template<class It > | |
reference | element (It first, It last) |
template<class It > | |
const_reference | element (It first, It last) const |
template<class It > | |
auto | element (It first, It last) -> reference |
Returns a reference to the element at the specified position in the view. | |
template<class It > | |
auto | element (It first, It last) const -> const_reference |
Returns a constant reference to the element at the specified position in the view. | |
xexpression_type & | expression () noexcept |
Returns a reference to the underlying expression of the view. | |
const xexpression_type & | expression () const noexcept |
Returns a constant reference to the underlying expression of the view. | |
storage_type & | storage () noexcept |
Returns a reference to the buffer containing the elements of the view. | |
const storage_type & | storage () const noexcept |
Returns a constant reference to the buffer containing the elements of the view. | |
template<class O > | |
bool | broadcast_shape (O &shape, bool reuse_cache=false) const |
Broadcast the shape of the view to the specified parameter. | |
template<class O > | |
bool | has_linear_assign (const O &strides) const noexcept |
Checks whether the xstrided_view_base can be linearly assigned to an expression with the specified strides. | |
Constructor | |
template<class CTA , class SA > | |
xstrided_view (CTA &&e, SA &&shape, strides_type &&strides, std::size_t offset, layout_type layout) noexcept | |
Constructs an xstrided_view. | |
self_type & | operator= (const self_type &) |
Public Member Functions inherited from xt::xview_semantic< D > | |
template<class E > | |
derived_type & | assign_xexpression (const xexpression< E > &e) |
template<class E > | |
derived_type & | computed_assign (const xexpression< E > &e) |
template<class E , class F > | |
derived_type & | scalar_computed_assign (const E &e, F &&f) |
derived_type & | assign_temporary (temporary_type &&) |
Assigns the temporary tmp to *this . | |
template<class E > | |
auto | assign_xexpression (const xexpression< E > &e) -> derived_type & |
template<class E > | |
auto | computed_assign (const xexpression< E > &e) -> derived_type & |
template<class E , class F > | |
auto | scalar_computed_assign (const E &e, F &&f) -> derived_type & |
template<class E > | |
auto | operator= (const xexpression< E > &rhs) -> derived_type & |
Public Member Functions inherited from xt::xsemantic_base< D > | |
template<class E > | |
disable_xexpression< E, derived_type & > | operator+= (const E &) |
template<class E > | |
disable_xexpression< E, derived_type & > | operator-= (const E &) |
template<class E > | |
disable_xexpression< E, derived_type & > | operator*= (const E &) |
template<class E > | |
disable_xexpression< E, derived_type & > | operator/= (const E &) |
template<class E > | |
disable_xexpression< E, derived_type & > | operator%= (const E &) |
template<class E > | |
disable_xexpression< E, derived_type & > | operator&= (const E &) |
template<class E > | |
disable_xexpression< E, derived_type & > | operator|= (const E &) |
template<class E > | |
disable_xexpression< E, derived_type & > | operator^= (const E &) |
template<class E > | |
derived_type & | operator+= (const xexpression< E > &) |
template<class E > | |
derived_type & | operator-= (const xexpression< E > &) |
template<class E > | |
derived_type & | operator*= (const xexpression< E > &) |
template<class E > | |
derived_type & | operator/= (const xexpression< E > &) |
template<class E > | |
derived_type & | operator%= (const xexpression< E > &) |
template<class E > | |
derived_type & | operator&= (const xexpression< E > &) |
template<class E > | |
derived_type & | operator|= (const xexpression< E > &) |
template<class E > | |
derived_type & | operator^= (const xexpression< E > &) |
template<class E > | |
derived_type & | assign (const xexpression< E > &) |
template<class E > | |
derived_type & | plus_assign (const xexpression< E > &) |
template<class E > | |
derived_type & | minus_assign (const xexpression< E > &) |
template<class E > | |
derived_type & | multiplies_assign (const xexpression< E > &) |
template<class E > | |
derived_type & | divides_assign (const xexpression< E > &) |
template<class E > | |
derived_type & | modulus_assign (const xexpression< E > &) |
template<class E > | |
derived_type & | bit_and_assign (const xexpression< E > &) |
template<class E > | |
derived_type & | bit_or_assign (const xexpression< E > &) |
template<class E > | |
derived_type & | bit_xor_assign (const xexpression< E > &) |
template<class E > | |
auto | operator+= (const E &e) -> disable_xexpression< E, derived_type & > |
Adds the scalar e to *this . | |
template<class E > | |
auto | operator-= (const E &e) -> disable_xexpression< E, derived_type & > |
Subtracts the scalar e from *this . | |
template<class E > | |
auto | operator*= (const E &e) -> disable_xexpression< E, derived_type & > |
Multiplies *this with the scalar e . | |
template<class E > | |
auto | operator/= (const E &e) -> disable_xexpression< E, derived_type & > |
Divides *this by the scalar e . | |
template<class E > | |
auto | operator%= (const E &e) -> disable_xexpression< E, derived_type & > |
Computes the remainder of *this after division by the scalar e . | |
template<class E > | |
auto | operator&= (const E &e) -> disable_xexpression< E, derived_type & > |
Computes the bitwise and of *this and the scalar e and assigns it to *this . | |
template<class E > | |
auto | operator|= (const E &e) -> disable_xexpression< E, derived_type & > |
Computes the bitwise or of *this and the scalar e and assigns it to *this . | |
template<class E > | |
auto | operator^= (const E &e) -> disable_xexpression< E, derived_type & > |
Computes the bitwise xor of *this and the scalar e and assigns it to *this . | |
template<class E > | |
auto | operator+= (const xexpression< E > &e) -> derived_type & |
Adds the xexpression e to *this . | |
template<class E > | |
auto | operator-= (const xexpression< E > &e) -> derived_type & |
Subtracts the xexpression e from *this . | |
template<class E > | |
auto | operator*= (const xexpression< E > &e) -> derived_type & |
Multiplies *this with the xexpression e . | |
template<class E > | |
auto | operator/= (const xexpression< E > &e) -> derived_type & |
Divides *this by the xexpression e . | |
template<class E > | |
auto | operator%= (const xexpression< E > &e) -> derived_type & |
Computes the remainder of *this after division by the xexpression e . | |
template<class E > | |
auto | operator&= (const xexpression< E > &e) -> derived_type & |
Computes the bitwise and of *this and the xexpression e and assigns it to *this . | |
template<class E > | |
auto | operator|= (const xexpression< E > &e) -> derived_type & |
Computes the bitwise or of *this and the xexpression e and assigns it to *this . | |
template<class E > | |
auto | operator^= (const xexpression< E > &e) -> derived_type & |
Computes the bitwise xor of *this and the xexpression e and assigns it to *this . | |
template<class E > | |
auto | assign (const xexpression< E > &e) -> derived_type & |
Assigns the xexpression e to *this . | |
template<class E > | |
auto | plus_assign (const xexpression< E > &e) -> derived_type & |
Adds the xexpression e to *this . | |
template<class E > | |
auto | minus_assign (const xexpression< E > &e) -> derived_type & |
Subtracts the xexpression e to *this . | |
template<class E > | |
auto | multiplies_assign (const xexpression< E > &e) -> derived_type & |
Multiplies *this with the xexpression e . | |
template<class E > | |
auto | divides_assign (const xexpression< E > &e) -> derived_type & |
Divides *this by the xexpression e . | |
template<class E > | |
auto | modulus_assign (const xexpression< E > &e) -> derived_type & |
Computes the remainder of *this after division by the xexpression e . | |
template<class E > | |
auto | bit_and_assign (const xexpression< E > &e) -> derived_type & |
Computes the bitwise and of e to *this . | |
template<class E > | |
auto | bit_or_assign (const xexpression< E > &e) -> derived_type & |
Computes the bitwise or of e to *this . | |
template<class E > | |
auto | bit_xor_assign (const xexpression< E > &e) -> derived_type & |
Computes the bitwise xor of e to *this . | |
template<class E > | |
auto | operator= (const xexpression< E > &e) -> derived_type & |
Static Public Attributes | |
static constexpr bool | is_const |
static constexpr bool | contiguous_layout |
static constexpr layout_type | static_layout |
Friends | |
template<class C > | |
class | xstepper |
class | xview_semantic< self_type > |
class | xaccessible< self_type > |
class | xconst_accessible< self_type > |
template<class D > | |
class | xaxis_iterator |
template<class D > | |
class | xaxis_slice_iterator |
Data | |
template<class T > | |
void | fill (const T &value) |
Fills the view with the given value. | |
linear_iterator | linear_begin () |
linear_iterator | linear_end () |
const_linear_iterator | linear_begin () const |
const_linear_iterator | linear_end () const |
const_linear_iterator | linear_cbegin () const |
const_linear_iterator | linear_cend () const |
reverse_linear_iterator | linear_rbegin () |
reverse_linear_iterator | linear_rend () |
const_reverse_linear_iterator | linear_rbegin () const |
const_reverse_linear_iterator | linear_rend () const |
const_reverse_linear_iterator | linear_crbegin () const |
const_reverse_linear_iterator | linear_crend () const |
reference | data_element (size_type i) |
const_reference | data_element (size_type i) const |
reference | flat (size_type i) |
const_reference | flat (size_type i) const |
template<class ST , class STEP > | |
auto | stepper_begin (const ST &shape) -> disable_indexed_stepper_t< STEP > |
template<class ST , class STEP > | |
auto | stepper_end (const ST &shape, layout_type l) -> disable_indexed_stepper_t< STEP > |
template<class ST , class STEP > | |
auto | stepper_begin (const ST &shape) const -> disable_indexed_stepper_t< STEP > |
template<class ST , class STEP > | |
auto | stepper_end (const ST &shape, layout_type l) const -> disable_indexed_stepper_t< STEP > |
template<class alignment , class simd , class T > | |
auto | store_simd (size_type i, const simd &e) -> enable_simd_interface< T, void > |
template<class alignment , class requested_type , std::size_t N, class T > | |
auto | load_simd (size_type i) const -> enable_simd_interface< T, simd_return_type< requested_type > > |
template<class E > | |
auto | build_view (E &&e) const -> rebind_t< E > |
Extended copy semantic | |
template<class E > | |
auto | operator= (const xexpression< E > &e) -> self_type & |
The extended assignment operator. | |
template<class E > | |
auto | operator= (const E &e) -> disable_xexpression< E, self_type > & |
Additional Inherited Members | |
Protected Member Functions inherited from xt::xview_semantic< D > | |
xview_semantic (const xview_semantic &)=default | |
xview_semantic & | operator= (const xview_semantic &)=default |
xview_semantic (xview_semantic &&)=default | |
xview_semantic & | operator= (xview_semantic &&)=default |
template<class E > | |
derived_type & | operator= (const xexpression< E > &) |
Protected Member Functions inherited from xt::xsemantic_base< D > | |
xsemantic_base (const xsemantic_base &)=default | |
xsemantic_base & | operator= (const xsemantic_base &)=default |
xsemantic_base (xsemantic_base &&)=default | |
xsemantic_base & | operator= (xsemantic_base &&)=default |
template<class E > | |
derived_type & | operator= (const xexpression< E > &) |
View of an xexpression using strides.
The xstrided_view class implements a view utilizing an initial offset and strides.
CT | the closure type of the xexpression type underlying this view |
L | the layout of the strided view |
S | the strides type of the strided view |
FST | the flat storage type used for the strided view |
Definition at line 129 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::backstrides_type = typename base_type::backstrides_type |
Definition at line 167 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::base_index_type = xindex_type_t<shape_type> |
Definition at line 176 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::base_type = xstrided_view_base<self_type> |
Definition at line 138 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::bool_load_type = typename base_type::bool_load_type |
Definition at line 181 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::const_container_iterator = typename storage_type::const_iterator |
Definition at line 277 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::const_linear_iterator = typename storage_type::const_iterator |
Definition at line 157 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::const_pointer = typename base_type::const_pointer |
Definition at line 150 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::const_reference = typename base_type::const_reference |
Definition at line 148 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::const_reverse_linear_iterator = std::reverse_iterator<const_linear_iterator> |
Definition at line 159 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::const_stepper = typename iterable_base::const_stepper |
Definition at line 170 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::container_iterator |
Definition at line 275 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::data_alignment = xt_simd::container_alignment_t<storage_type> |
Definition at line 178 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::difference_type = typename base_type::difference_type |
Definition at line 152 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::enable_simd_interface = std::enable_if_t<has_simd_interface<T>::value && L != layout_type::dynamic, R> |
Definition at line 258 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::expression_tag = typename extension_base::expression_tag |
Definition at line 141 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::extension_base = extension::xstrided_view_base_t<CT, S, L, FST> |
Definition at line 140 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::inner_backstrides_type = typename base_type::inner_backstrides_type |
Definition at line 164 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::inner_shape_type = typename base_type::inner_shape_type |
Definition at line 162 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::inner_storage_type = typename base_type::inner_storage_type |
Definition at line 154 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::inner_strides_type = typename base_type::inner_strides_type |
Definition at line 163 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::iterable_base = select_iterable_base_t<L, xexpression_type::static_layout, self_type> |
Definition at line 161 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::linear_iterator = typename storage_type::iterator |
Definition at line 156 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::pointer = typename base_type::pointer |
Definition at line 149 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::rebind_t = xstrided_view<E, S, L, typename FST::template rebind_t<E>> |
Definition at line 280 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::reference = typename base_type::reference |
Definition at line 147 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::reverse_linear_iterator = std::reverse_iterator<linear_iterator> |
Definition at line 158 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::self_type = xstrided_view<CT, S, L, FST> |
Definition at line 137 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::semantic_base = xview_semantic<self_type> |
Definition at line 139 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::shape_type = typename base_type::shape_type |
Definition at line 165 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::simd_return_type = xt_simd::simd_return_type<value_type, requested_type> |
Definition at line 255 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::simd_type = xt_simd::simd_type<value_type> |
Definition at line 179 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::simd_value_type = xt_simd::simd_type<value_type> |
Definition at line 180 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::size_type = typename base_type::size_type |
Definition at line 151 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::stepper = typename iterable_base::stepper |
Definition at line 169 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::storage_type = typename base_type::storage_type |
Definition at line 155 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::strides_type = typename base_type::strides_type |
Definition at line 166 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::temporary_type = typename xcontainer_inner_types<self_type>::temporary_type |
Definition at line 175 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::value_type = typename base_type::value_type |
Definition at line 146 of file xstrided_view.hpp.
using xt::xstrided_view< CT, S, L, FST >::xexpression_type = typename base_type::xexpression_type |
Definition at line 143 of file xstrided_view.hpp.
|
inlinenoexcept |
Constructs an xstrided_view.
e | the underlying xexpression for this view |
shape | the shape of the view |
strides | the strides of the view |
offset | the offset of the first element in the underlying container |
layout | the layout of the view |
Definition at line 370 of file xstrided_view.hpp.
|
inlinenoexcept |
Returns the backstrides of the xtrided_view_base.
Definition at line 145 of file xstrided_view_base.hpp.
|
inline |
Broadcast the shape of the view to the specified parameter.
shape | the result shape |
reuse_cache | parameter for internal optimization |
Definition at line 184 of file xstrided_view_base.hpp.
|
inline |
Definition at line 694 of file xstrided_view.hpp.
|
inlinenoexcept |
Returns a constant pointer to the underlying array serving as element storage.
The first element of the view is at data() + data_offset().
Definition at line 594 of file xstrided_view_base.hpp.
|
inlinenoexcept |
Returns a pointer to the underlying array serving as element storage.
The first element of the view is at data() + data_offset().
Definition at line 582 of file xstrided_view_base.hpp.
Definition at line 464 of file xstrided_view.hpp.
Definition at line 470 of file xstrided_view.hpp.
|
inlinenoexcept |
Returns the offset to the first element in the view.
Definition at line 178 of file xstrided_view_base.hpp.
|
inline |
Returns a reference to the element at the specified position in the view.
first | iterator starting the sequence of indices |
last | iterator ending the sequence of indices The number of indices in the sequence should be equal to or greater than the the number of dimensions of the view.. |
Definition at line 537 of file xstrided_view_base.hpp.
|
inline |
Returns a constant reference to the element at the specified position in the view.
first | iterator starting the sequence of indices |
last | iterator ending the sequence of indices The number of indices in the sequence should be equal to or greater than the the number of dimensions of the view.. |
Definition at line 552 of file xstrided_view_base.hpp.
|
inlinenoexcept |
Returns a constant reference to the underlying expression of the view.
Definition at line 181 of file xstrided_view_base.hpp.
|
inlinenoexcept |
Returns a reference to the underlying expression of the view.
Definition at line 180 of file xstrided_view_base.hpp.
Fills the view with the given value.
value | the value to fill the view with. |
Definition at line 449 of file xstrided_view.hpp.
Definition at line 476 of file xstrided_view.hpp.
Definition at line 482 of file xstrided_view.hpp.
|
inlinenoexcept |
Checks whether the xstrided_view_base can be linearly assigned to an expression with the specified strides.
Definition at line 187 of file xstrided_view_base.hpp.
|
inlinenoexcept |
Definition at line 147 of file xstrided_view_base.hpp.
|
inlinenoexcept |
Returns the layout of the xtrided_view_base.
Definition at line 146 of file xstrided_view_base.hpp.
Definition at line 488 of file xstrided_view.hpp.
Definition at line 500 of file xstrided_view.hpp.
Definition at line 512 of file xstrided_view.hpp.
Definition at line 518 of file xstrided_view.hpp.
Definition at line 548 of file xstrided_view.hpp.
Definition at line 554 of file xstrided_view.hpp.
Definition at line 494 of file xstrided_view.hpp.
Definition at line 506 of file xstrided_view.hpp.
Definition at line 524 of file xstrided_view.hpp.
Definition at line 536 of file xstrided_view.hpp.
Definition at line 530 of file xstrided_view.hpp.
Definition at line 542 of file xstrided_view.hpp.
|
inline |
Definition at line 685 of file xstrided_view.hpp.
|
inline |
Definition at line 408 of file xstrided_view.hpp.
Definition at line 384 of file xstrided_view.hpp.
|
inline |
The extended assignment operator.
Definition at line 399 of file xstrided_view.hpp.
|
inlinenoexcept |
Returns the shape of the xtrided_view_base.
Definition at line 143 of file xstrided_view_base.hpp.
|
inline |
Definition at line 565 of file xstrided_view.hpp.
|
inline |
Definition at line 599 of file xstrided_view.hpp.
|
inline |
Definition at line 573 of file xstrided_view.hpp.
|
inline |
Definition at line 608 of file xstrided_view.hpp.
|
inlinenoexcept |
Returns a constant reference to the buffer containing the elements of the view.
Definition at line 172 of file xstrided_view_base.hpp.
|
inlinenoexcept |
Returns a reference to the buffer containing the elements of the view.
Definition at line 171 of file xstrided_view_base.hpp.
|
inline |
Definition at line 676 of file xstrided_view.hpp.
|
inlinenoexcept |
Returns the strides of the xtrided_view_base.
Definition at line 144 of file xstrided_view_base.hpp.
|
inline |
Returns a reference to the element at the specified position in the view.
args | a list of indices specifying the position in the view. Indices must be unsigned integers, the number of indices must be equal to the number of dimensions of the view, else the behavior is undefined. |
Definition at line 495 of file xstrided_view_base.hpp.
|
inline |
Returns a constant reference to the element at the specified position in the view.
args | a list of indices specifying the position in the view. Indices must be unsigned integers, the number of indices must be equal to the number of dimensions of the view, else the behavior is undefined. |
Definition at line 522 of file xstrided_view_base.hpp.
|
friend |
Definition at line 303 of file xstrided_view.hpp.
|
friend |
Definition at line 308 of file xstrided_view.hpp.
|
friend |
Definition at line 310 of file xstrided_view.hpp.
|
friend |
Definition at line 303 of file xstrided_view.hpp.
|
friend |
Definition at line 303 of file xstrided_view.hpp.
|
friend |
Definition at line 303 of file xstrided_view.hpp.
|
staticconstexpr |
Definition at line 133 of file xstrided_view_base.hpp.
|
staticconstexpr |
Definition at line 104 of file xstrided_view_base.hpp.
|
staticconstexpr |
Definition at line 132 of file xstrided_view_base.hpp.