Find element in This API allows you to find an array that is closest but greater than or equal to the argument.RPG Equivalent: %LOOKUPGT, LOOKUPelement which is great than the argument you pass to it.
An optional resulting indicators object can specify if any elements in the flags array should be set. The resulting indicators object can have this property:
- high (Number) - identifies the flag number to set if the nearest higher entry is found
Parameters
- Search argument
- Array
- Start index (OR resulting indicators object)
- Resulting indicators (optional)
Return Value
Returns 0 if no matching element is found; otherwise, the element index is returned.
Example
Code Block | ||
---|---|---|
| ||
pjs.define("Word1", { type: 'char', length: 15 });
pjs.define("arr1", { type: 'char', length: 15, dim: 5, orderby: 'DESCEND' });
arr1[1] = 'Patrick';
arr1[2] = 'Owenals';
arr1[3] = 'Nancy';
arr1[4] = 'Manan';
arr1[5] = 'Lincoln';
Word1 = 'Manan';
pjs.lookupGT(Word1, arr1, { high: 72 }); |
RPG Equivalent
%LOOKUPGT()