/** a view onto the values of the map. */
protected class ValueView extends MapBackedView<V> {
@SuppressWarnings({"unchecked"})
public Iterator<V> iterator() {
return new TObjectHashIterator( TCustomHashMap.this ) {
protected V objectAtIndex( int index ) {
return _values[index];
}
};
}