vecmem 1.14.0
Loading...
Searching...
No Matches
List of all members
vecmem::static_array< T, N > Struct Template Reference

Simple statically-sized array-like class designed for use in device code. More...

#include <vecmem/containers/static_array.hpp>

Public Types

Type definitions, mimicking @c std::array
using value_type = T
 Type of the array elements.
 
using size_type = std::size_t
 Size type for the array.
 
using difference_type = std::ptrdiff_t
 Pointer difference type.
 
using reference = value_type &
 Value reference type.
 
using const_reference = const value_type &
 Constant value reference type.
 
using pointer = value_type *
 Value pointer type.
 
using const_pointer = const value_type *
 Constant value pointer type.
 
using iterator = pointer
 Forward iterator type.
 
using const_iterator = const_pointer
 Constant forward iterator type.
 
using reverse_iterator = vecmem::details::reverse_iterator< iterator >
 Reverse iterator type.
 
using const_reverse_iterator = vecmem::details::reverse_iterator< const_iterator >
 Constant reverse iterator type.
 

Public Member Functions

Array element access functions
VECMEM_HOST constexpr reference at (size_type i)
 Bounds-checked accessor method.
 
VECMEM_HOST constexpr const_reference at (size_type i) const
 Constant bounds-checked accessor method.
 
VECMEM_HOST_AND_DEVICE constexpr reference operator[] (size_type i)
 Accessor method.
 
VECMEM_HOST_AND_DEVICE constexpr const_reference operator[] (size_type i) const
 Constant accessor method.
 

Detailed Description

template<typename T, std::size_t N>
struct vecmem::static_array< T, N >

Simple statically-sized array-like class designed for use in device code.

This class is designed to be an almost-drop-in replacement for std::array which can be used in device code.

Template Parameters
TThe array type.
NThe size of the array.

Member Function Documentation

◆ at() [1/2]

template<typename T , std::size_t N>
VECMEM_HOST constexpr auto vecmem::static_array< T, N >::at ( size_type  i)
constexpr

Bounds-checked accessor method.

Since this method can throw an exception, this is not usable on the device side.

Parameters
[in]iThe index to access.
Returns
The value at index i if i less less than N, otherwise an exception is thrown.

◆ at() [2/2]

template<typename T , std::size_t N>
VECMEM_HOST constexpr auto vecmem::static_array< T, N >::at ( size_type  i) const
constexpr

Constant bounds-checked accessor method.

Since this method can throw an exception, this is not usable on the device side.

Parameters
[in]iThe index to access.
Returns
The value at index i if i less less than N, otherwise an exception is thrown.

◆ operator[]() [1/2]

template<typename T , std::size_t N>
VECMEM_HOST_AND_DEVICE constexpr auto vecmem::static_array< T, N >::operator[] ( size_type  i)
constexpr

Accessor method.

Parameters
[in]iThe index to access.
Returns
The value at index i if i less less than N, otherwise the behaviour is undefined.

◆ operator[]() [2/2]

template<typename T , std::size_t N>
VECMEM_HOST_AND_DEVICE constexpr auto vecmem::static_array< T, N >::operator[] ( size_type  i) const
constexpr

Constant accessor method.

Parameters
[in]iThe index to access.
Returns
The value at index i if i less less than N, otherwise the behaviour is undefined.

The documentation for this struct was generated from the following files: