EMEmvMap Class Reference

Conforms to ObjectType
__covariant
Declared in EMEmvMap.h

Overview

EMEmvMap.

– addObject:withKey:

Add object with key to map. Only if not exists already.

- (BOOL)addObject:(ObjectType)anObject withKey:(NSInteger)aKey

Parameters

anObject

Object you want to add to map.

aKey

Unique key.

Return Value

YES if operation was successful.

Declared In

EMEmvMap.h

– objectWithKey:

Get object for given key.

- (ObjectType)objectWithKey:(NSInteger)aKey

Parameters

aKey

Unique key.

Return Value

Object or nil if key does not exits.

Declared In

EMEmvMap.h

– subMap:max:

Get subset of map for selected Id range.

- (EMEmvMap *)subMap:(NSInteger)aMin max:(NSInteger)aMax

Parameters

aMin

Bottom limit of id.

aMax

Top limit of id.

Return Value

Subset for given range.

Declared In

EMEmvMap.h