C++
bool find( const T& value, int& foundAt, int start = 0 ) const;
Description
This function returns Adesk::kTrue if the array contains value searching from index position start. When value is found, index will be set to the index position of the first location that contains value. The start argument is supplied with a default value of zero.
Parameters
Parameters | Description |
---|---|
value | Input value to search for in this array |
start | Input index to start searching from |
index | Returns the index of the found value |