// // NSMapTable+Subscripting.h // SmartDeviceLink-iOS // // Created by Joel Fischer on 10/5/15. // Copyright © 2015 smartdevicelink. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN /** * Implement subscripting methods for NSMapTable to allow for easily pushing and pulling objects. */ @interface NSMapTable (Subscripting) - (void)setObject:(nullable id)anObject forKeyedSubscript:(id)key; - (nullable id)objectForKeyedSubscript:(id)key; @end NS_ASSUME_NONNULL_END