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