If a key has multiple
data items, you can use the HAS_NEXT method to determine whether there
is a next item in the current key's multiple data item list. If there
is another item, the method will return a nonzero value in the numeric
variable
R
. Otherwise, it will return
a zero.
The FIND method determines
whether the key exists in the hash object. The HAS_NEXT method determines
whether the key has multiple data items associated with it. When you
have determined that the key has another data item, that data item
can be retrieved by using the FIND_NEXT method, which sets the data
variable to the value of the data item so that it is available for
use after the method call. Once you are in the data item list, you
can use the HAS_PREV and FIND_PREV methods in addition to the HAS_NEXT
and FIND_NEXT methods to traverse the list.