System::Array::LastIndexOf método
Contenido
[
Ocultar
]Array::LastIndexOf(const ArrayPtr<ArrayType>&, const ValueType&, int, int) method
Determina el índice de la última aparición del elemento especificado en un rango de elementos de la matriz especificado por el índice de inicio y el número de elementos en el rango.
template<typename ArrayType,typename ValueType> static int System::Array<T>::LastIndexOf(const ArrayPtr<ArrayType> &arr, const ValueType &value, int startIndex, int count)
| Parámetro | Descripción |
|---|---|
| ArrayType | Tipo de elementos en el arreglo objetivo |
| ValueType | tipo del elemento a buscar en el array |
| Parámetro | Tipo | Descripción |
|---|---|---|
| arr | const ArrayPtr<ArrayType>& | Array para buscar el elemento especificado en |
| valor | const ValueType& | Índice del elemento que se debe determinar |
| startIndex | int | Index en el que se inicia la búsqueda |
| count | int | Número de elementos del rango en el que buscar |
ReturnValue
Index of the last occurrence of the specified item if the item is found, otherwise -1
Ver también
- Typedef ArrayPtr
- Typedef ValueType
- Class Array
- Namespace System
- Library Aspose.PDF for C++
Array::LastIndexOf(const ArrayPtr<ArrayType>&, const ValueType&) method
Determina el índice de la última aparición del elemento especificado en el arreglo.
template<typename ArrayType,typename ValueType> static int System::Array<T>::LastIndexOf(const ArrayPtr<ArrayType> &items, const ValueType &value)
| Parámetro | Descripción |
|---|---|
| ArrayType | Tipo de elementos en el arreglo objetivo |
| ValueType | tipo del elemento a buscar en el array |
| Parámetro | Tipo | Descripción |
|---|---|---|
| items | const ArrayPtr<ArrayType>& | Array para buscar el elemento especificado en |
| valor | const ValueType& | Índice del elemento que se debe determinar |
ReturnValue
Index of the last occurrence of the specified item if the item is found, otherwise -1
Ver también
- Typedef ArrayPtr
- Typedef ValueType
- Class Array
- Namespace System
- Library Aspose.PDF for C++
Array::LastIndexOf(const ArrayPtr<ArrayType>&, const ValueType&, int) method
Determina el índice de la última aparición del elemento especificado en la matriz a partir del índice especificado.
template<typename ArrayType,typename ValueType> static int System::Array<T>::LastIndexOf(const ArrayPtr<ArrayType> &items, const ValueType &value, int startIndex)
| Parámetro | Descripción |
|---|---|
| ArrayType | Tipo de elementos en el arreglo objetivo |
| ValueType | tipo del elemento a buscar en el array |
| Parámetro | Tipo | Descripción |
|---|---|---|
| items | const ArrayPtr<ArrayType>& | Array para buscar el elemento especificado en |
| valor | const ValueType& | Índice del elemento que se debe determinar |
| startIndex | int | Index en el que se inicia la búsqueda |
ReturnValue
Index of the last occurrence of the specified item if the item is found, otherwise -1
Ver también
- Typedef ArrayPtr
- Typedef ValueType
- Class Array
- Namespace System
- Library Aspose.PDF for C++