EMEmvMap Class Reference
| Conforms to | ObjectType __covariant |
|---|---|
| Declared in | EMEmvMap.h |
– addObject:withKey:
Add object with key to map. Only if not exists already.
- (BOOL)addObject:(ObjectType)anObject withKey:(NSInteger)aKeyParameters
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)aKeyParameters
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)aMaxParameters
aMin |
Bottom limit of id. |
|---|---|
aMax |
Top limit of id. |
Return Value
Subset for given range.
Declared In
EMEmvMap.h