Vue d'un tableau d'éléments de type T. Plus de détails...
Types publics | |
using | ThatClass = SpanImpl< T, SizeType, Extent, MinValue > |
using | size_type = SizeType |
using | ElementType = T |
using | element_type = ElementType |
using | value_type = typename std::remove_cv_t< ElementType > |
using | const_value_type = typename std::add_const_t< value_type > |
using | index_type = SizeType |
using | difference_type = SizeType |
using | pointer = ElementType * |
using | const_pointer = const ElementType * |
using | reference = ElementType & |
using | const_reference = const ElementType & |
using | iterator = ArrayIterator< pointer > |
using | const_iterator = ArrayIterator< const_pointer > |
using | view_type = typename detail::ViewTypeT< ElementType >::view_type |
using | reverse_iterator = std::reverse_iterator< iterator > |
using | const_reverse_iterator = std::reverse_iterator< const_iterator > |
template<typename X > | |
using | is_same_const_type = std::enable_if_t< std::is_same_v< X, T >||std::is_same_v< std::add_const_t< X >, T > > |
Indique si on peut convertir un 'X' ou 'const X' en un 'T'. | |
Fonctions membres publiques | |
constexpr ARCCORE_HOST_DEVICE | SpanImpl () noexcept |
Construit une vue vide. | |
template<typename X , SizeType XExtent, SizeType XMinValue, typename = std::enable_if_t<std::is_same_v<const X, T>>> | |
constexpr ARCCORE_HOST_DEVICE | SpanImpl (const SpanImpl< X, SizeType, XExtent, XMinValue > &from) noexcept |
Constructeur de recopie depuis une autre vue. | |
template<SizeType XExtent, SizeType XMinValue> | |
constexpr ARCCORE_HOST_DEVICE | SpanImpl (const SpanImpl< T, SizeType, XExtent, XMinValue > &from) noexcept |
constexpr ARCCORE_HOST_DEVICE | SpanImpl (pointer ptr, SizeType asize) noexcept |
Construit une vue sur une zone mémoire commencant par ptr et contenant asize éléments. | |
template<std::size_t N, typename X , typename = is_same_const_type<X>> | |
constexpr ARCCORE_HOST_DEVICE | SpanImpl (std::array< X, N > &from) |
Construit une vue depuis un std::array. | |
template<std::size_t N, typename X , typename = is_same_const_type<X>> | |
constexpr ARCCORE_HOST_DEVICE ThatClass & | operator= (std::array< X, N > &from) |
Opérateur de recopie. | |
constexpr ARCCORE_HOST_DEVICE reference | operator[] (SizeType i) const |
i-ème élément du tableau. | |
constexpr ARCCORE_HOST_DEVICE reference | operator() (SizeType i) const |
i-ème élément du tableau. | |
constexpr ARCCORE_HOST_DEVICE reference | item (SizeType i) const |
i-ème élément du tableau. | |
constexpr ARCCORE_HOST_DEVICE void | setItem (SizeType i, const_reference v) noexcept |
Positionne le i-ème élément du tableau. | |
constexpr ARCCORE_HOST_DEVICE SizeType | size () const noexcept |
Retourne la taille du tableau. | |
constexpr ARCCORE_HOST_DEVICE SizeType | sizeBytes () const noexcept |
Retourne la taille du tableau en octets. | |
constexpr ARCCORE_HOST_DEVICE SizeType | length () const noexcept |
Nombre d'éléments du tableau. | |
constexpr ARCCORE_HOST_DEVICE iterator | begin () const noexcept |
Itérateur sur le premier élément du tableau. | |
constexpr ARCCORE_HOST_DEVICE iterator | end () const noexcept |
Itérateur sur le premier élément après la fin du tableau. | |
constexpr ARCCORE_HOST_DEVICE reverse_iterator | rbegin () const noexcept |
Itérateur inverse sur le premier élément du tableau. | |
constexpr ARCCORE_HOST_DEVICE reverse_iterator | rend () const noexcept |
Itérateur inverse sur le premier élément après la fin du tableau. | |
ARCCORE_DEPRECATED_REASON ("Y2023: Use begin()/end() instead") ArrayRange< pointer > range() const | |
Intervalle d'itération du premier au dernièr élément. | |
constexpr ARCCORE_HOST_DEVICE pointer | ptrAt (SizeType index) const |
Addresse du index-ème élément. | |
constexpr ARCCORE_HOST_DEVICE reference | at (SizeType i) const |
constexpr ARCCORE_HOST_DEVICE void | setAt (SizeType i, const_reference value) |
ARCCORE_HOST_DEVICE void | fill (T o) |
Remplit le tableau avec la valeur o. | |
constexpr view_type | smallView () |
Vue constante sur cette vue. | |
constexpr ConstArrayView< value_type > | constSmallView () const |
Vue constante sur cette vue. | |
constexpr ARCCORE_HOST_DEVICE ThatClass | subSpan (SizeType abegin, SizeType asize) const |
Sous-vue à partir de l'élément abegin et contenant asize éléments. | |
constexpr ARCCORE_HOST_DEVICE ThatClass | subPart (SizeType abegin, SizeType asize) const |
Sous-vue à partir de l'élément abegin et contenant asize éléments. | |
constexpr ThatClass | subView (SizeType abegin, SizeType asize) const |
Sous-vue à partir de l'élément abegin et contenant asize éléments. | |
constexpr ARCCORE_HOST_DEVICE ThatClass | subspan (SizeType abegin, SizeType asize) const |
Pour compatibilité avec le C++20. | |
constexpr ThatClass | subViewInterval (SizeType index, SizeType nb_interval) const |
Sous-vue correspondant à l'interval index sur nb_interval. | |
constexpr ThatClass | subSpanInterval (SizeType index, SizeType nb_interval) const |
Sous-vue correspondant à l'interval index sur nb_interval. | |
constexpr ThatClass | subPartInterval (SizeType index, SizeType nb_interval) const |
Sous-vue correspondant à l'interval index sur nb_interval. | |
template<class U > | |
ARCCORE_HOST_DEVICE void | copy (const U ©_array) |
Recopie le tableau copy_array dans l'instance. | |
constexpr ARCCORE_HOST_DEVICE bool | empty () const noexcept |
Retourne true si le tableau est vide (dimension nulle) | |
ARCCORE_HOST_DEVICE bool | contains (const_reference v) const |
true si le tableau contient l'élément de valeur v | |
std::optional< SizeType > | findFirst (const_reference v) const |
constexpr ARCCORE_HOST_DEVICE void | setArray (const ArrayView< T > &v) noexcept |
constexpr ARCCORE_HOST_DEVICE void | setArray (const Span< T > &v) noexcept |
constexpr ARCCORE_HOST_DEVICE pointer | data () const noexcept |
Pointeur sur le début de la vue. | |
Fonctions membres publiques statiques | |
static constexpr ThatClass | create (pointer ptr, SizeType asize) noexcept |
Construit une vue sur une zone mémoire commencant par ptr et. | |
Fonctions membres protégées | |
constexpr void | _setArray (pointer v, SizeType s) noexcept |
Modifie le pointeur et la taille du tableau. | |
constexpr void | _setPtr (pointer v) noexcept |
Modifie le pointeur du début du tableau. | |
constexpr void | _setSize (SizeType s) noexcept |
Modifie la taille du tableau. | |
Fonctions membres privées statiques | |
static constexpr SizeType | _min (SizeType a, SizeType b) |
Attributs privés | |
pointer | m_ptr |
Pointeur sur le tableau. | |
SizeType | m_size |
Nombre d'éléments du tableau. | |
Amis | |
template<typename X , SizeType Extent2, SizeType MinValue2, typename = std::enable_if_t<std::is_same_v<X,value_type>>> | |
bool | operator== (const SpanImpl< T, SizeType, Extent, MinValue > &rhs, const SpanImpl< X, SizeType, Extent2, MinValue2 > &lhs) |
Opérateur d'égalité (valide si T est const mais pas X) | |
template<typename X , SizeType Extent2, SizeType MinValue2, typename = std::enable_if_t<std::is_same_v<X,value_type>>> | |
bool | operator!= (const SpanImpl< T, SizeType, Extent, MinValue > &rhs, const SpanImpl< X, SizeType, Extent2, MinValue2 > &lhs) |
Opérateur d'inégalité (valide si T est const mais pas X) | |
template<SizeType Extent2, SizeType MinValue2> | |
bool | operator== (const SpanImpl< T, SizeType, Extent, MinValue > &rhs, const SpanImpl< T, SizeType, Extent2, MinValue2 > &lhs) |
Opérateur d'égalité | |
template<SizeType Extent2, SizeType MinValue2> | |
bool | operator!= (const SpanImpl< T, SizeType, Extent, MinValue > &rhs, const SpanImpl< T, SizeType, Extent2, MinValue2 > &lhs) |
Opérateur d'inégalité | |
std::ostream & | operator<< (std::ostream &o, const ThatClass &val) |
Vue d'un tableau d'éléments de type T.
Cette classe ne doit pas être utilisée directement. Il faut utiliser Span ou SmallSpan à la place.
La vue est non modifiable si l'argument template est de type 'const T'. Cette classe permet d'accéder et d'utiliser un tableau d'éléments du type T de la même manière qu'un tableau C standard. SizeType est le type utilisé pour conserver le nombre d'éléments du tableau. Cela peut être 'Int32' ou 'Int64'.
Si Extent est différent de DynExtent (le défaut), la taille est variable, sinon elle est fixe et a pour valeur Extent. MinValue est la valeur minimale possible (0 par défaut).
using Arccore::SpanImpl< T, SizeType, Extent, MinValue >::const_iterator = ArrayIterator<const_pointer> |
using Arccore::SpanImpl< T, SizeType, Extent, MinValue >::const_pointer = const ElementType* |
using Arccore::SpanImpl< T, SizeType, Extent, MinValue >::const_reference = const ElementType& |
using Arccore::SpanImpl< T, SizeType, Extent, MinValue >::const_reverse_iterator = std::reverse_iterator<const_iterator> |
using Arccore::SpanImpl< T, SizeType, Extent, MinValue >::const_value_type = typename std::add_const_t<value_type> |
using Arccore::SpanImpl< T, SizeType, Extent, MinValue >::difference_type = SizeType |
using Arccore::SpanImpl< T, SizeType, Extent, MinValue >::element_type = ElementType |
using Arccore::SpanImpl< T, SizeType, Extent, MinValue >::ElementType = T |
using Arccore::SpanImpl< T, SizeType, Extent, MinValue >::index_type = SizeType |
using Arccore::SpanImpl< T, SizeType, Extent, MinValue >::is_same_const_type = std::enable_if_t<std::is_same_v<X,T> || std::is_same_v<std::add_const_t<X>,T> > |
using Arccore::SpanImpl< T, SizeType, Extent, MinValue >::iterator = ArrayIterator<pointer> |
using Arccore::SpanImpl< T, SizeType, Extent, MinValue >::pointer = ElementType* |
using Arccore::SpanImpl< T, SizeType, Extent, MinValue >::reference = ElementType& |
using Arccore::SpanImpl< T, SizeType, Extent, MinValue >::reverse_iterator = std::reverse_iterator<iterator> |
using Arccore::SpanImpl< T, SizeType, Extent, MinValue >::size_type = SizeType |
using Arccore::SpanImpl< T, SizeType, Extent, MinValue >::ThatClass = SpanImpl<T,SizeType,Extent,MinValue> |
using Arccore::SpanImpl< T, SizeType, Extent, MinValue >::value_type = typename std::remove_cv_t<ElementType> |
using Arccore::SpanImpl< T, SizeType, Extent, MinValue >::view_type = typename detail::ViewTypeT<ElementType>::view_type |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexpr |
|
inlinestaticconstexprprivate |
|
inlineconstexprprotectednoexcept |
Modifie le pointeur et la taille du tableau.
C'est à la classe dérivée de vérifier la cohérence entre le pointeur alloué et la dimension donnée.
Définition à la ligne 463 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_ptr, et Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size.
|
inlineconstexprprotectednoexcept |
Modifie le pointeur du début du tableau.
C'est à la classe dérivée de vérifier la cohérence entre le pointeur alloué et la dimension donnée.
Définition à la ligne 471 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_ptr.
|
inlineconstexprprotectednoexcept |
Modifie la taille du tableau.
C'est à la classe dérivée de vérifier la cohérence entre le pointeur alloué et la dimension donnée.
Définition à la ligne 479 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size.
|
inline |
Intervalle d'itération du premier au dernièr élément.
Définition à la ligne 231 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_ptr, et Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size.
|
inlineconstexpr |
|
inlineconstexprnoexcept |
Itérateur sur le premier élément du tableau.
Définition à la ligne 218 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_ptr.
Référencé par Arccore::SpanImpl< T, SizeType, Extent, MinValue >::rend().
|
inlineconstexpr |
Vue constante sur cette vue.
Définition à la ligne 279 du fichier Span.h.
Références Arccore::arccoreCheckArraySize(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_ptr, et Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size.
|
inline |
true si le tableau contient l'élément de valeur v
Définition à la ligne 374 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_ptr, Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size, et SizeType.
|
inline |
Recopie le tableau copy_array dans l'instance.
Comme aucune allocation mémoire n'est effectuée, le nombre d'éléments de copy_array doit être inférieur ou égal au nombre d'éléments courant. S'il est inférieur, les éléments du tableau courant situés à la fin du tableau sont inchangés
Définition à la ligne 357 du fichier Span.h.
Références Arccore::arccoreCheckAt(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_ptr, Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size, et SizeType.
Référencé par Arccore::BasicSerializer::initFromBuffer().
|
inlinestaticconstexprnoexcept |
|
inlineconstexprnoexcept |
Pointeur sur le début de la vue.
Définition à la ligne 419 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_ptr.
Référencé par Arccore::AbstractArray< T >::_addRange(), Arccore::AbstractArray< T >::_initFromSpan(), Arccore::AbstractArray< T >::_resizeAndCopyView(), Arccore::_sampleSpan(), Arcane::Array2DataT< DataType >::allocateBufferForSerializedData(), Arccore::asBytes(), Arccore::asWritableBytes(), Arccore::binaryRead(), Arccore::binaryWrite(), Arccore::StringImpl::bytes(), Arcane::Array2DataT< DataType >::createSerializedDataRef(), Arcane::ArrayShape::dimensions(), Arccore::String::endsWith(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::operator=(), Arcane::Accelerator::ItemVariableScalarInViewT< _ItemType, _DataType >::operator[](), Arcane::ItemVariableScalarInViewT< ItemType, DataType >::operator[](), Arcane::Accelerator::ItemVariableScalarInViewT< _ItemType, _DataType >::operator[](), Arcane::ItemVariableScalarInViewT< ItemType, DataType >::operator[](), Arcane::Array2DataT< DataType >::serialize(), Arccore::String::startsWith(), Arccore::String::writeBytes(), et Arccore::StringView::writeBytes().
|
inlineconstexprnoexcept |
Retourne true si le tableau est vide (dimension nulle)
Définition à la ligne 372 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size.
Référencé par Arcane::Materials::IncrementalComponentModifier::_copyBetweenPartialsAndGlobals().
|
inlineconstexprnoexcept |
Itérateur sur le premier élément après la fin du tableau.
Définition à la ligne 222 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_ptr, et Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size.
Référencé par Arccore::SpanImpl< T, SizeType, Extent, MinValue >::rbegin().
|
inline |
Remplit le tableau avec la valeur o.
Définition à la ligne 261 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_ptr, Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size, et SizeType.
|
inline |
/brief Position du premier élément de valeur v
/param v La valeur à trouver. /return La position du premier élément de valeur v si présent, std::nullopt sinon.
Définition à la ligne 389 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_ptr, Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size, et SizeType.
|
inlineconstexpr |
i-ème élément du tableau.
En mode check, vérifie les débordements.
Définition à la ligne 191 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_ptr, et Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size.
|
inlineconstexprnoexcept |
Nombre d'éléments du tableau.
Définition à la ligne 213 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size.
|
inlineconstexpr |
i-ème élément du tableau.
En mode check, vérifie les débordements.
Définition à la ligne 180 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_ptr, et Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size.
|
inlineconstexpr |
Opérateur de recopie.
Définition à la ligne 146 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::data(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_ptr, et Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size.
|
inlineconstexpr |
i-ème élément du tableau.
En mode check, vérifie les débordements.
Définition à la ligne 169 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_ptr, et Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size.
|
inlineconstexpr |
Addresse du index-ème élément.
Définition à la ligne 240 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_ptr, et Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size.
|
inlineconstexprnoexcept |
Itérateur inverse sur le premier élément du tableau.
Définition à la ligne 224 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::end().
|
inlineconstexprnoexcept |
Itérateur inverse sur le premier élément après la fin du tableau.
Définition à la ligne 226 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::begin().
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexpr |
|
inlineconstexprnoexcept |
Positionne le i-ème élément du tableau.
En mode check, vérifie les débordements.
Définition à la ligne 202 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_ptr, et Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size.
|
inlineconstexprnoexcept |
Retourne la taille du tableau.
Définition à la ligne 209 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size.
Référencé par Arccore::AbstractArray< T >::_addRange(), Arccore::AbstractArray< T >::_initFromSpan(), Arccore::AbstractArray< T >::_resizeAndCopyView(), Arccore::_sampleSpan(), Arcane::SerializedData::_serialize(), Arccore::binaryRead(), Arccore::binaryWrite(), Arccore::StringImpl::bytes(), Arccore::String::endsWith(), Arccore::String::hashCode(), Arccore::BasicSerializer::initFromBuffer(), Arccore::BasicSerializer::putArray(), Arccore::BasicSerializer::putArray(), Arccore::BasicSerializer::putArray(), Arccore::BasicSerializer::putArray(), Arccore::BasicSerializer::putArray(), Arccore::BasicSerializer::putArray(), Arccore::BasicSerializer::putArray(), Arccore::BasicSerializer::putArray(), Arccore::BasicSerializer::putArray(), Arccore::ISerializer::reserveSpan(), Arccore::ISerializer::reserveSpan(), Arccore::ISerializer::reserveSpan(), Arccore::ISerializer::reserveSpan(), Arccore::ISerializer::reserveSpan(), Arccore::ISerializer::reserveSpan(), Arccore::ISerializer::reserveSpan(), Arccore::ISerializer::reserveSpan(), Arccore::String::startsWith(), Arccore::BasicTranscoder::transcodeFromUtf16ToUtf8(), Arccore::String::writeBytes(), et Arccore::StringView::writeBytes().
|
inlineconstexprnoexcept |
Retourne la taille du tableau en octets.
Définition à la ligne 211 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size, et SizeType.
Référencé par Arccore::asBytes(), et Arccore::asWritableBytes().
|
inlineconstexpr |
Vue constante sur cette vue.
Définition à la ligne 270 du fichier Span.h.
Références Arccore::arccoreCheckArraySize(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_ptr, et Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size.
Référencé par Arccore::ISerializer::getSpan(), Arccore::ISerializer::getSpan(), Arccore::ISerializer::getSpan(), Arcane::NumArray< Arcane::Materials::ComponentItemLocalId, Arcane::ExtentsV >::operator SmallSpan< Arcane::Materials::ComponentItemLocalId >(), Arccore::BasicSerializer::reserveSpan(), Arccore::BasicSerializer::reserveSpan(), et Arccore::String::utf8().
|
inlineconstexpr |
Sous-vue à partir de l'élément abegin et contenant asize éléments.
Définition à la ligne 304 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::subSpan().
|
inlineconstexpr |
|
inlineconstexpr |
Sous-vue à partir de l'élément abegin et contenant asize éléments.
Si (abegin+asize
est supérieur à la taille du tableau, la vue est tronquée à cette taille, retournant éventuellement une vue vide.
Définition à la ligne 292 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_ptr, et Arccore::SpanImpl< T, SizeType, Extent, MinValue >::m_size.
Référencé par Arccore::SpanImpl< T, SizeType, Extent, MinValue >::subPart(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::subspan(), et Arccore::SpanImpl< T, SizeType, Extent, MinValue >::subView().
|
inlineconstexpr |
Pour compatibilité avec le C++20.
Définition à la ligne 324 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::subSpan().
|
inlineconstexpr |
|
inlineconstexpr |
Sous-vue à partir de l'élément abegin et contenant asize éléments.
Si (abegin+asize)
est supérieur à la taille du tableau, la vue est tronquée à cette taille, retournant éventuellement une vue vide.
Définition à la ligne 318 du fichier Span.h.
Références Arccore::SpanImpl< T, SizeType, Extent, MinValue >::subSpan().
|
inlineconstexpr |
|
friend |
|
private |
Pointeur sur le tableau.
Définition à la ligne 483 du fichier Span.h.
Référencé par Arccore::SpanImpl< T, SizeType, Extent, MinValue >::_setArray(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::_setPtr(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::ARCCORE_DEPRECATED_REASON(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::begin(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::constSmallView(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::contains(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::copy(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::data(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::end(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::fill(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::findFirst(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::item(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::operator()(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::operator=(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::operator[](), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::ptrAt(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::setItem(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::smallView(), et Arccore::SpanImpl< T, SizeType, Extent, MinValue >::subSpan().
|
private |
Nombre d'éléments du tableau.
Définition à la ligne 484 du fichier Span.h.
Référencé par Arccore::SpanImpl< T, SizeType, Extent, MinValue >::_setArray(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::_setSize(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::ARCCORE_DEPRECATED_REASON(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::constSmallView(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::contains(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::copy(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::empty(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::end(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::fill(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::findFirst(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::item(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::length(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::operator()(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::operator=(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::operator[](), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::ptrAt(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::setItem(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::size(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::sizeBytes(), Arccore::SpanImpl< T, SizeType, Extent, MinValue >::smallView(), et Arccore::SpanImpl< T, SizeType, Extent, MinValue >::subSpan().