Método System::Array::IndexOf
Array::IndexOf(const T&) const method
Determina el índice de la primera aparición del elemento especificado en la matriz.
virtual int System::Array<T>::IndexOf(const T &item) const override
| Parámetro | Tipo | Descripción |
|---|---|---|
| elemento | const T& | Índice del elemento que se debe determinar |
ReturnValue
Index of the first occurrence of the specified item if the item is found, otherwise -1
Ver también
- Class Array
- Namespace System
- Library Aspose.PDF for C++
Array::IndexOf(const ArrayPtr<ArrayType>&, const ValueType&) method
Determina el índice de la primera aparición del elemento especificado en la matriz.
template<typename ArrayType,typename ValueType> static int System::Array<T>::IndexOf(const ArrayPtr<ArrayType> &arr, 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 |
|---|---|---|
| arr | const ArrayPtr<ArrayType>& | Array para buscar el elemento especificado en |
| valor | const ValueType& | Índice del elemento que se debe determinar |
ReturnValue
Index of the first occurrence 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::IndexOf(const ArrayPtr<ArrayType>&, const ValueType&, int) method
Determina el índice de la primera aparición del elemento especificado en la matriz a partir del índice especificado.
template<typename ArrayType,typename ValueType> static int System::Array<T>::IndexOf(const ArrayPtr<ArrayType> &arr, 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 |
|---|---|---|
| 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 |
ReturnValue
Index of the first 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::IndexOf(const ArrayPtr<ArrayType>&, const ValueType&, int, int) method
Determina el índice de la primera 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>::IndexOf(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 first 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++