template<typename>
class Geo::StridedArrayView
A read-only view into an array with optional stride.
Functions
Name | Description |
---|---|
GetSize() | Return the number of elements. |
operator[](int) | Return the i'th element. |
StridedArrayView() | Constructor. |
StridedArrayView(const T *, Geo::s32, Geo::s32) | Constructor. |
Anchor | ||||
---|---|---|---|---|
|
GEO_FORCE_INLINE Geo::s32 Geo::StridedArrayView< T >::GetSize
...
public: GEO_FORCE_INLINEGeo::s32 GetSize() const
...
Return the number of elements.
Anchor | ||||
---|---|---|---|---|
|
GEO_FORCE_INLINE const T& Geo::StridedArrayView< T >::operator[]
...
public: GEO_FORCE_INLINE const T & operator[]
(
int i
) const
...
Return the i'th element.
Anchor | ||||
---|---|---|---|---|
|
Geo::StridedArrayView< T >::StridedArrayView
...
public: StridedArrayView()
...
Constructor.
Anchor | ||||
---|---|---|---|---|
|
Geo::StridedArrayView< T >::StridedArrayView
...
public: StridedArrayView
(
const T * first,
Geo::s32 count,
Geo::s32 stride
)
...
Constructor.