123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364 |
- // Protocol Buffers - Google's data interchange format
- // Copyright 2008 Google Inc. All rights reserved.
- // https://developers.google.com/protocol-buffers/
- //
- // Redistribution and use in source and binary forms, with or without
- // modification, are permitted provided that the following conditions are
- // met:
- //
- // * Redistributions of source code must retain the above copyright
- // notice, this list of conditions and the following disclaimer.
- // * Redistributions in binary form must reproduce the above
- // copyright notice, this list of conditions and the following disclaimer
- // in the documentation and/or other materials provided with the
- // distribution.
- // * Neither the name of Google Inc. nor the names of its
- // contributors may be used to endorse or promote products derived from
- // this software without specific prior written permission.
- //
- // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- #import <Foundation/Foundation.h>
- #import "GPBRuntimeTypes.h"
- // These classes are used for map fields of basic data types. They are used because
- // they perform better than boxing into NSNumbers in NSDictionaries.
- // Note: These are not meant to be subclassed.
- // Note on naming: for the classes holding numeric values, a more natural
- // naming of the method might be things like "-valueForKey:",
- // "-setValue:forKey:"; etc. But those selectors are also defined by Key Value
- // Coding (KVC) as categories on NSObject. So "overloading" the selectors with
- // other meanings can cause warnings (based on compiler settings), but more
- // importantly, some of those selector get called as KVC breaks up keypaths.
- // So if those selectors are used, using KVC will compile cleanly, but could
- // crash as it invokes those selectors with the wrong types of arguments.
- NS_ASSUME_NONNULL_BEGIN
- //%PDDM-EXPAND DECLARE_DICTIONARIES()
- // This block of code is generated, do not edit it directly.
- #pragma mark - UInt32 -> UInt32
- @interface GPBUInt32UInt32Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithUInt32:(uint32_t)value
- forKey:(uint32_t)key;
- + (instancetype)dictionaryWithUInt32s:(const uint32_t [])values
- forKeys:(const uint32_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBUInt32UInt32Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithUInt32s:(const uint32_t [])values
- forKeys:(const uint32_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBUInt32UInt32Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getUInt32:(nullable uint32_t *)value forKey:(uint32_t)key;
- - (void)enumerateKeysAndUInt32sUsingBlock:
- (void (^)(uint32_t key, uint32_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBUInt32UInt32Dictionary *)otherDictionary;
- - (void)setUInt32:(uint32_t)value forKey:(uint32_t)key;
- - (void)removeUInt32ForKey:(uint32_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - UInt32 -> Int32
- @interface GPBUInt32Int32Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithInt32:(int32_t)value
- forKey:(uint32_t)key;
- + (instancetype)dictionaryWithInt32s:(const int32_t [])values
- forKeys:(const uint32_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBUInt32Int32Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithInt32s:(const int32_t [])values
- forKeys:(const uint32_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBUInt32Int32Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getInt32:(nullable int32_t *)value forKey:(uint32_t)key;
- - (void)enumerateKeysAndInt32sUsingBlock:
- (void (^)(uint32_t key, int32_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBUInt32Int32Dictionary *)otherDictionary;
- - (void)setInt32:(int32_t)value forKey:(uint32_t)key;
- - (void)removeInt32ForKey:(uint32_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - UInt32 -> UInt64
- @interface GPBUInt32UInt64Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithUInt64:(uint64_t)value
- forKey:(uint32_t)key;
- + (instancetype)dictionaryWithUInt64s:(const uint64_t [])values
- forKeys:(const uint32_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBUInt32UInt64Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithUInt64s:(const uint64_t [])values
- forKeys:(const uint32_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBUInt32UInt64Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getUInt64:(nullable uint64_t *)value forKey:(uint32_t)key;
- - (void)enumerateKeysAndUInt64sUsingBlock:
- (void (^)(uint32_t key, uint64_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBUInt32UInt64Dictionary *)otherDictionary;
- - (void)setUInt64:(uint64_t)value forKey:(uint32_t)key;
- - (void)removeUInt64ForKey:(uint32_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - UInt32 -> Int64
- @interface GPBUInt32Int64Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithInt64:(int64_t)value
- forKey:(uint32_t)key;
- + (instancetype)dictionaryWithInt64s:(const int64_t [])values
- forKeys:(const uint32_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBUInt32Int64Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithInt64s:(const int64_t [])values
- forKeys:(const uint32_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBUInt32Int64Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getInt64:(nullable int64_t *)value forKey:(uint32_t)key;
- - (void)enumerateKeysAndInt64sUsingBlock:
- (void (^)(uint32_t key, int64_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBUInt32Int64Dictionary *)otherDictionary;
- - (void)setInt64:(int64_t)value forKey:(uint32_t)key;
- - (void)removeInt64ForKey:(uint32_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - UInt32 -> Bool
- @interface GPBUInt32BoolDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithBool:(BOOL)value
- forKey:(uint32_t)key;
- + (instancetype)dictionaryWithBools:(const BOOL [])values
- forKeys:(const uint32_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBUInt32BoolDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithBools:(const BOOL [])values
- forKeys:(const uint32_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBUInt32BoolDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getBool:(nullable BOOL *)value forKey:(uint32_t)key;
- - (void)enumerateKeysAndBoolsUsingBlock:
- (void (^)(uint32_t key, BOOL value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBUInt32BoolDictionary *)otherDictionary;
- - (void)setBool:(BOOL)value forKey:(uint32_t)key;
- - (void)removeBoolForKey:(uint32_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - UInt32 -> Float
- @interface GPBUInt32FloatDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithFloat:(float)value
- forKey:(uint32_t)key;
- + (instancetype)dictionaryWithFloats:(const float [])values
- forKeys:(const uint32_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBUInt32FloatDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithFloats:(const float [])values
- forKeys:(const uint32_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBUInt32FloatDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getFloat:(nullable float *)value forKey:(uint32_t)key;
- - (void)enumerateKeysAndFloatsUsingBlock:
- (void (^)(uint32_t key, float value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBUInt32FloatDictionary *)otherDictionary;
- - (void)setFloat:(float)value forKey:(uint32_t)key;
- - (void)removeFloatForKey:(uint32_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - UInt32 -> Double
- @interface GPBUInt32DoubleDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithDouble:(double)value
- forKey:(uint32_t)key;
- + (instancetype)dictionaryWithDoubles:(const double [])values
- forKeys:(const uint32_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBUInt32DoubleDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithDoubles:(const double [])values
- forKeys:(const uint32_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBUInt32DoubleDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getDouble:(nullable double *)value forKey:(uint32_t)key;
- - (void)enumerateKeysAndDoublesUsingBlock:
- (void (^)(uint32_t key, double value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBUInt32DoubleDictionary *)otherDictionary;
- - (void)setDouble:(double)value forKey:(uint32_t)key;
- - (void)removeDoubleForKey:(uint32_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - UInt32 -> Enum
- @interface GPBUInt32EnumDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- @property(nonatomic, readonly) GPBEnumValidationFunc validationFunc;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- rawValue:(int32_t)rawValue
- forKey:(uint32_t)key;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- rawValues:(const int32_t [])values
- forKeys:(const uint32_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBUInt32EnumDictionary *)dictionary;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- capacity:(NSUInteger)numItems;
- - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func;
- - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
- rawValues:(const int32_t [])values
- forKeys:(const uint32_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBUInt32EnumDictionary *)dictionary;
- - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
- capacity:(NSUInteger)numItems;
- // These will return kGPBUnrecognizedEnumeratorValue if the value for the key
- // is not a valid enumerator as defined by validationFunc. If the actual value is
- // desired, use "raw" version of the method.
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getEnum:(nullable int32_t *)value forKey:(uint32_t)key;
- - (void)enumerateKeysAndEnumsUsingBlock:
- (void (^)(uint32_t key, int32_t value, BOOL *stop))block;
- // These methods bypass the validationFunc to provide access to values that were not
- // known at the time the binary was compiled.
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getRawValue:(nullable int32_t *)rawValue forKey:(uint32_t)key;
- - (void)enumerateKeysAndRawValuesUsingBlock:
- (void (^)(uint32_t key, int32_t rawValue, BOOL *stop))block;
- - (void)addRawEntriesFromDictionary:(GPBUInt32EnumDictionary *)otherDictionary;
- // If value is not a valid enumerator as defined by validationFunc, these
- // methods will assert in debug, and will log in release and assign the value
- // to the default value. Use the rawValue methods below to assign non enumerator
- // values.
- - (void)setEnum:(int32_t)value forKey:(uint32_t)key;
- // This method bypass the validationFunc to provide setting of values that were not
- // known at the time the binary was compiled.
- - (void)setRawValue:(int32_t)rawValue forKey:(uint32_t)key;
- // No validation applies to these methods.
- - (void)removeEnumForKey:(uint32_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - UInt32 -> Object
- @interface GPBUInt32ObjectDictionary<__covariant ObjectType> : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithObject:(ObjectType)object
- forKey:(uint32_t)key;
- + (instancetype)dictionaryWithObjects:(const ObjectType GPB_UNSAFE_UNRETAINED [])objects
- forKeys:(const uint32_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBUInt32ObjectDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithObjects:(const ObjectType GPB_UNSAFE_UNRETAINED [])objects
- forKeys:(const uint32_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBUInt32ObjectDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- - (ObjectType)objectForKey:(uint32_t)key;
- - (void)enumerateKeysAndObjectsUsingBlock:
- (void (^)(uint32_t key, ObjectType object, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBUInt32ObjectDictionary *)otherDictionary;
- - (void)setObject:(ObjectType)object forKey:(uint32_t)key;
- - (void)removeObjectForKey:(uint32_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Int32 -> UInt32
- @interface GPBInt32UInt32Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithUInt32:(uint32_t)value
- forKey:(int32_t)key;
- + (instancetype)dictionaryWithUInt32s:(const uint32_t [])values
- forKeys:(const int32_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBInt32UInt32Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithUInt32s:(const uint32_t [])values
- forKeys:(const int32_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBInt32UInt32Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getUInt32:(nullable uint32_t *)value forKey:(int32_t)key;
- - (void)enumerateKeysAndUInt32sUsingBlock:
- (void (^)(int32_t key, uint32_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBInt32UInt32Dictionary *)otherDictionary;
- - (void)setUInt32:(uint32_t)value forKey:(int32_t)key;
- - (void)removeUInt32ForKey:(int32_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Int32 -> Int32
- @interface GPBInt32Int32Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithInt32:(int32_t)value
- forKey:(int32_t)key;
- + (instancetype)dictionaryWithInt32s:(const int32_t [])values
- forKeys:(const int32_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBInt32Int32Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithInt32s:(const int32_t [])values
- forKeys:(const int32_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBInt32Int32Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getInt32:(nullable int32_t *)value forKey:(int32_t)key;
- - (void)enumerateKeysAndInt32sUsingBlock:
- (void (^)(int32_t key, int32_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBInt32Int32Dictionary *)otherDictionary;
- - (void)setInt32:(int32_t)value forKey:(int32_t)key;
- - (void)removeInt32ForKey:(int32_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Int32 -> UInt64
- @interface GPBInt32UInt64Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithUInt64:(uint64_t)value
- forKey:(int32_t)key;
- + (instancetype)dictionaryWithUInt64s:(const uint64_t [])values
- forKeys:(const int32_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBInt32UInt64Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithUInt64s:(const uint64_t [])values
- forKeys:(const int32_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBInt32UInt64Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getUInt64:(nullable uint64_t *)value forKey:(int32_t)key;
- - (void)enumerateKeysAndUInt64sUsingBlock:
- (void (^)(int32_t key, uint64_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBInt32UInt64Dictionary *)otherDictionary;
- - (void)setUInt64:(uint64_t)value forKey:(int32_t)key;
- - (void)removeUInt64ForKey:(int32_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Int32 -> Int64
- @interface GPBInt32Int64Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithInt64:(int64_t)value
- forKey:(int32_t)key;
- + (instancetype)dictionaryWithInt64s:(const int64_t [])values
- forKeys:(const int32_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBInt32Int64Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithInt64s:(const int64_t [])values
- forKeys:(const int32_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBInt32Int64Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getInt64:(nullable int64_t *)value forKey:(int32_t)key;
- - (void)enumerateKeysAndInt64sUsingBlock:
- (void (^)(int32_t key, int64_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBInt32Int64Dictionary *)otherDictionary;
- - (void)setInt64:(int64_t)value forKey:(int32_t)key;
- - (void)removeInt64ForKey:(int32_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Int32 -> Bool
- @interface GPBInt32BoolDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithBool:(BOOL)value
- forKey:(int32_t)key;
- + (instancetype)dictionaryWithBools:(const BOOL [])values
- forKeys:(const int32_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBInt32BoolDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithBools:(const BOOL [])values
- forKeys:(const int32_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBInt32BoolDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getBool:(nullable BOOL *)value forKey:(int32_t)key;
- - (void)enumerateKeysAndBoolsUsingBlock:
- (void (^)(int32_t key, BOOL value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBInt32BoolDictionary *)otherDictionary;
- - (void)setBool:(BOOL)value forKey:(int32_t)key;
- - (void)removeBoolForKey:(int32_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Int32 -> Float
- @interface GPBInt32FloatDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithFloat:(float)value
- forKey:(int32_t)key;
- + (instancetype)dictionaryWithFloats:(const float [])values
- forKeys:(const int32_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBInt32FloatDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithFloats:(const float [])values
- forKeys:(const int32_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBInt32FloatDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getFloat:(nullable float *)value forKey:(int32_t)key;
- - (void)enumerateKeysAndFloatsUsingBlock:
- (void (^)(int32_t key, float value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBInt32FloatDictionary *)otherDictionary;
- - (void)setFloat:(float)value forKey:(int32_t)key;
- - (void)removeFloatForKey:(int32_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Int32 -> Double
- @interface GPBInt32DoubleDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithDouble:(double)value
- forKey:(int32_t)key;
- + (instancetype)dictionaryWithDoubles:(const double [])values
- forKeys:(const int32_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBInt32DoubleDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithDoubles:(const double [])values
- forKeys:(const int32_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBInt32DoubleDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getDouble:(nullable double *)value forKey:(int32_t)key;
- - (void)enumerateKeysAndDoublesUsingBlock:
- (void (^)(int32_t key, double value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBInt32DoubleDictionary *)otherDictionary;
- - (void)setDouble:(double)value forKey:(int32_t)key;
- - (void)removeDoubleForKey:(int32_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Int32 -> Enum
- @interface GPBInt32EnumDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- @property(nonatomic, readonly) GPBEnumValidationFunc validationFunc;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- rawValue:(int32_t)rawValue
- forKey:(int32_t)key;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- rawValues:(const int32_t [])values
- forKeys:(const int32_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBInt32EnumDictionary *)dictionary;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- capacity:(NSUInteger)numItems;
- - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func;
- - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
- rawValues:(const int32_t [])values
- forKeys:(const int32_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBInt32EnumDictionary *)dictionary;
- - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
- capacity:(NSUInteger)numItems;
- // These will return kGPBUnrecognizedEnumeratorValue if the value for the key
- // is not a valid enumerator as defined by validationFunc. If the actual value is
- // desired, use "raw" version of the method.
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getEnum:(nullable int32_t *)value forKey:(int32_t)key;
- - (void)enumerateKeysAndEnumsUsingBlock:
- (void (^)(int32_t key, int32_t value, BOOL *stop))block;
- // These methods bypass the validationFunc to provide access to values that were not
- // known at the time the binary was compiled.
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getRawValue:(nullable int32_t *)rawValue forKey:(int32_t)key;
- - (void)enumerateKeysAndRawValuesUsingBlock:
- (void (^)(int32_t key, int32_t rawValue, BOOL *stop))block;
- - (void)addRawEntriesFromDictionary:(GPBInt32EnumDictionary *)otherDictionary;
- // If value is not a valid enumerator as defined by validationFunc, these
- // methods will assert in debug, and will log in release and assign the value
- // to the default value. Use the rawValue methods below to assign non enumerator
- // values.
- - (void)setEnum:(int32_t)value forKey:(int32_t)key;
- // This method bypass the validationFunc to provide setting of values that were not
- // known at the time the binary was compiled.
- - (void)setRawValue:(int32_t)rawValue forKey:(int32_t)key;
- // No validation applies to these methods.
- - (void)removeEnumForKey:(int32_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Int32 -> Object
- @interface GPBInt32ObjectDictionary<__covariant ObjectType> : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithObject:(ObjectType)object
- forKey:(int32_t)key;
- + (instancetype)dictionaryWithObjects:(const ObjectType GPB_UNSAFE_UNRETAINED [])objects
- forKeys:(const int32_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBInt32ObjectDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithObjects:(const ObjectType GPB_UNSAFE_UNRETAINED [])objects
- forKeys:(const int32_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBInt32ObjectDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- - (ObjectType)objectForKey:(int32_t)key;
- - (void)enumerateKeysAndObjectsUsingBlock:
- (void (^)(int32_t key, ObjectType object, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBInt32ObjectDictionary *)otherDictionary;
- - (void)setObject:(ObjectType)object forKey:(int32_t)key;
- - (void)removeObjectForKey:(int32_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - UInt64 -> UInt32
- @interface GPBUInt64UInt32Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithUInt32:(uint32_t)value
- forKey:(uint64_t)key;
- + (instancetype)dictionaryWithUInt32s:(const uint32_t [])values
- forKeys:(const uint64_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBUInt64UInt32Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithUInt32s:(const uint32_t [])values
- forKeys:(const uint64_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBUInt64UInt32Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getUInt32:(nullable uint32_t *)value forKey:(uint64_t)key;
- - (void)enumerateKeysAndUInt32sUsingBlock:
- (void (^)(uint64_t key, uint32_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBUInt64UInt32Dictionary *)otherDictionary;
- - (void)setUInt32:(uint32_t)value forKey:(uint64_t)key;
- - (void)removeUInt32ForKey:(uint64_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - UInt64 -> Int32
- @interface GPBUInt64Int32Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithInt32:(int32_t)value
- forKey:(uint64_t)key;
- + (instancetype)dictionaryWithInt32s:(const int32_t [])values
- forKeys:(const uint64_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBUInt64Int32Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithInt32s:(const int32_t [])values
- forKeys:(const uint64_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBUInt64Int32Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getInt32:(nullable int32_t *)value forKey:(uint64_t)key;
- - (void)enumerateKeysAndInt32sUsingBlock:
- (void (^)(uint64_t key, int32_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBUInt64Int32Dictionary *)otherDictionary;
- - (void)setInt32:(int32_t)value forKey:(uint64_t)key;
- - (void)removeInt32ForKey:(uint64_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - UInt64 -> UInt64
- @interface GPBUInt64UInt64Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithUInt64:(uint64_t)value
- forKey:(uint64_t)key;
- + (instancetype)dictionaryWithUInt64s:(const uint64_t [])values
- forKeys:(const uint64_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBUInt64UInt64Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithUInt64s:(const uint64_t [])values
- forKeys:(const uint64_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBUInt64UInt64Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getUInt64:(nullable uint64_t *)value forKey:(uint64_t)key;
- - (void)enumerateKeysAndUInt64sUsingBlock:
- (void (^)(uint64_t key, uint64_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBUInt64UInt64Dictionary *)otherDictionary;
- - (void)setUInt64:(uint64_t)value forKey:(uint64_t)key;
- - (void)removeUInt64ForKey:(uint64_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - UInt64 -> Int64
- @interface GPBUInt64Int64Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithInt64:(int64_t)value
- forKey:(uint64_t)key;
- + (instancetype)dictionaryWithInt64s:(const int64_t [])values
- forKeys:(const uint64_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBUInt64Int64Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithInt64s:(const int64_t [])values
- forKeys:(const uint64_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBUInt64Int64Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getInt64:(nullable int64_t *)value forKey:(uint64_t)key;
- - (void)enumerateKeysAndInt64sUsingBlock:
- (void (^)(uint64_t key, int64_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBUInt64Int64Dictionary *)otherDictionary;
- - (void)setInt64:(int64_t)value forKey:(uint64_t)key;
- - (void)removeInt64ForKey:(uint64_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - UInt64 -> Bool
- @interface GPBUInt64BoolDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithBool:(BOOL)value
- forKey:(uint64_t)key;
- + (instancetype)dictionaryWithBools:(const BOOL [])values
- forKeys:(const uint64_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBUInt64BoolDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithBools:(const BOOL [])values
- forKeys:(const uint64_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBUInt64BoolDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getBool:(nullable BOOL *)value forKey:(uint64_t)key;
- - (void)enumerateKeysAndBoolsUsingBlock:
- (void (^)(uint64_t key, BOOL value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBUInt64BoolDictionary *)otherDictionary;
- - (void)setBool:(BOOL)value forKey:(uint64_t)key;
- - (void)removeBoolForKey:(uint64_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - UInt64 -> Float
- @interface GPBUInt64FloatDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithFloat:(float)value
- forKey:(uint64_t)key;
- + (instancetype)dictionaryWithFloats:(const float [])values
- forKeys:(const uint64_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBUInt64FloatDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithFloats:(const float [])values
- forKeys:(const uint64_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBUInt64FloatDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getFloat:(nullable float *)value forKey:(uint64_t)key;
- - (void)enumerateKeysAndFloatsUsingBlock:
- (void (^)(uint64_t key, float value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBUInt64FloatDictionary *)otherDictionary;
- - (void)setFloat:(float)value forKey:(uint64_t)key;
- - (void)removeFloatForKey:(uint64_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - UInt64 -> Double
- @interface GPBUInt64DoubleDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithDouble:(double)value
- forKey:(uint64_t)key;
- + (instancetype)dictionaryWithDoubles:(const double [])values
- forKeys:(const uint64_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBUInt64DoubleDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithDoubles:(const double [])values
- forKeys:(const uint64_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBUInt64DoubleDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getDouble:(nullable double *)value forKey:(uint64_t)key;
- - (void)enumerateKeysAndDoublesUsingBlock:
- (void (^)(uint64_t key, double value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBUInt64DoubleDictionary *)otherDictionary;
- - (void)setDouble:(double)value forKey:(uint64_t)key;
- - (void)removeDoubleForKey:(uint64_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - UInt64 -> Enum
- @interface GPBUInt64EnumDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- @property(nonatomic, readonly) GPBEnumValidationFunc validationFunc;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- rawValue:(int32_t)rawValue
- forKey:(uint64_t)key;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- rawValues:(const int32_t [])values
- forKeys:(const uint64_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBUInt64EnumDictionary *)dictionary;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- capacity:(NSUInteger)numItems;
- - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func;
- - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
- rawValues:(const int32_t [])values
- forKeys:(const uint64_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBUInt64EnumDictionary *)dictionary;
- - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
- capacity:(NSUInteger)numItems;
- // These will return kGPBUnrecognizedEnumeratorValue if the value for the key
- // is not a valid enumerator as defined by validationFunc. If the actual value is
- // desired, use "raw" version of the method.
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getEnum:(nullable int32_t *)value forKey:(uint64_t)key;
- - (void)enumerateKeysAndEnumsUsingBlock:
- (void (^)(uint64_t key, int32_t value, BOOL *stop))block;
- // These methods bypass the validationFunc to provide access to values that were not
- // known at the time the binary was compiled.
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getRawValue:(nullable int32_t *)rawValue forKey:(uint64_t)key;
- - (void)enumerateKeysAndRawValuesUsingBlock:
- (void (^)(uint64_t key, int32_t rawValue, BOOL *stop))block;
- - (void)addRawEntriesFromDictionary:(GPBUInt64EnumDictionary *)otherDictionary;
- // If value is not a valid enumerator as defined by validationFunc, these
- // methods will assert in debug, and will log in release and assign the value
- // to the default value. Use the rawValue methods below to assign non enumerator
- // values.
- - (void)setEnum:(int32_t)value forKey:(uint64_t)key;
- // This method bypass the validationFunc to provide setting of values that were not
- // known at the time the binary was compiled.
- - (void)setRawValue:(int32_t)rawValue forKey:(uint64_t)key;
- // No validation applies to these methods.
- - (void)removeEnumForKey:(uint64_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - UInt64 -> Object
- @interface GPBUInt64ObjectDictionary<__covariant ObjectType> : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithObject:(ObjectType)object
- forKey:(uint64_t)key;
- + (instancetype)dictionaryWithObjects:(const ObjectType GPB_UNSAFE_UNRETAINED [])objects
- forKeys:(const uint64_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBUInt64ObjectDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithObjects:(const ObjectType GPB_UNSAFE_UNRETAINED [])objects
- forKeys:(const uint64_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBUInt64ObjectDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- - (ObjectType)objectForKey:(uint64_t)key;
- - (void)enumerateKeysAndObjectsUsingBlock:
- (void (^)(uint64_t key, ObjectType object, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBUInt64ObjectDictionary *)otherDictionary;
- - (void)setObject:(ObjectType)object forKey:(uint64_t)key;
- - (void)removeObjectForKey:(uint64_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Int64 -> UInt32
- @interface GPBInt64UInt32Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithUInt32:(uint32_t)value
- forKey:(int64_t)key;
- + (instancetype)dictionaryWithUInt32s:(const uint32_t [])values
- forKeys:(const int64_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBInt64UInt32Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithUInt32s:(const uint32_t [])values
- forKeys:(const int64_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBInt64UInt32Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getUInt32:(nullable uint32_t *)value forKey:(int64_t)key;
- - (void)enumerateKeysAndUInt32sUsingBlock:
- (void (^)(int64_t key, uint32_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBInt64UInt32Dictionary *)otherDictionary;
- - (void)setUInt32:(uint32_t)value forKey:(int64_t)key;
- - (void)removeUInt32ForKey:(int64_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Int64 -> Int32
- @interface GPBInt64Int32Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithInt32:(int32_t)value
- forKey:(int64_t)key;
- + (instancetype)dictionaryWithInt32s:(const int32_t [])values
- forKeys:(const int64_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBInt64Int32Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithInt32s:(const int32_t [])values
- forKeys:(const int64_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBInt64Int32Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getInt32:(nullable int32_t *)value forKey:(int64_t)key;
- - (void)enumerateKeysAndInt32sUsingBlock:
- (void (^)(int64_t key, int32_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBInt64Int32Dictionary *)otherDictionary;
- - (void)setInt32:(int32_t)value forKey:(int64_t)key;
- - (void)removeInt32ForKey:(int64_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Int64 -> UInt64
- @interface GPBInt64UInt64Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithUInt64:(uint64_t)value
- forKey:(int64_t)key;
- + (instancetype)dictionaryWithUInt64s:(const uint64_t [])values
- forKeys:(const int64_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBInt64UInt64Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithUInt64s:(const uint64_t [])values
- forKeys:(const int64_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBInt64UInt64Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getUInt64:(nullable uint64_t *)value forKey:(int64_t)key;
- - (void)enumerateKeysAndUInt64sUsingBlock:
- (void (^)(int64_t key, uint64_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBInt64UInt64Dictionary *)otherDictionary;
- - (void)setUInt64:(uint64_t)value forKey:(int64_t)key;
- - (void)removeUInt64ForKey:(int64_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Int64 -> Int64
- @interface GPBInt64Int64Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithInt64:(int64_t)value
- forKey:(int64_t)key;
- + (instancetype)dictionaryWithInt64s:(const int64_t [])values
- forKeys:(const int64_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBInt64Int64Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithInt64s:(const int64_t [])values
- forKeys:(const int64_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBInt64Int64Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getInt64:(nullable int64_t *)value forKey:(int64_t)key;
- - (void)enumerateKeysAndInt64sUsingBlock:
- (void (^)(int64_t key, int64_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBInt64Int64Dictionary *)otherDictionary;
- - (void)setInt64:(int64_t)value forKey:(int64_t)key;
- - (void)removeInt64ForKey:(int64_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Int64 -> Bool
- @interface GPBInt64BoolDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithBool:(BOOL)value
- forKey:(int64_t)key;
- + (instancetype)dictionaryWithBools:(const BOOL [])values
- forKeys:(const int64_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBInt64BoolDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithBools:(const BOOL [])values
- forKeys:(const int64_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBInt64BoolDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getBool:(nullable BOOL *)value forKey:(int64_t)key;
- - (void)enumerateKeysAndBoolsUsingBlock:
- (void (^)(int64_t key, BOOL value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBInt64BoolDictionary *)otherDictionary;
- - (void)setBool:(BOOL)value forKey:(int64_t)key;
- - (void)removeBoolForKey:(int64_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Int64 -> Float
- @interface GPBInt64FloatDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithFloat:(float)value
- forKey:(int64_t)key;
- + (instancetype)dictionaryWithFloats:(const float [])values
- forKeys:(const int64_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBInt64FloatDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithFloats:(const float [])values
- forKeys:(const int64_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBInt64FloatDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getFloat:(nullable float *)value forKey:(int64_t)key;
- - (void)enumerateKeysAndFloatsUsingBlock:
- (void (^)(int64_t key, float value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBInt64FloatDictionary *)otherDictionary;
- - (void)setFloat:(float)value forKey:(int64_t)key;
- - (void)removeFloatForKey:(int64_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Int64 -> Double
- @interface GPBInt64DoubleDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithDouble:(double)value
- forKey:(int64_t)key;
- + (instancetype)dictionaryWithDoubles:(const double [])values
- forKeys:(const int64_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBInt64DoubleDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithDoubles:(const double [])values
- forKeys:(const int64_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBInt64DoubleDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getDouble:(nullable double *)value forKey:(int64_t)key;
- - (void)enumerateKeysAndDoublesUsingBlock:
- (void (^)(int64_t key, double value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBInt64DoubleDictionary *)otherDictionary;
- - (void)setDouble:(double)value forKey:(int64_t)key;
- - (void)removeDoubleForKey:(int64_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Int64 -> Enum
- @interface GPBInt64EnumDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- @property(nonatomic, readonly) GPBEnumValidationFunc validationFunc;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- rawValue:(int32_t)rawValue
- forKey:(int64_t)key;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- rawValues:(const int32_t [])values
- forKeys:(const int64_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBInt64EnumDictionary *)dictionary;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- capacity:(NSUInteger)numItems;
- - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func;
- - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
- rawValues:(const int32_t [])values
- forKeys:(const int64_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBInt64EnumDictionary *)dictionary;
- - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
- capacity:(NSUInteger)numItems;
- // These will return kGPBUnrecognizedEnumeratorValue if the value for the key
- // is not a valid enumerator as defined by validationFunc. If the actual value is
- // desired, use "raw" version of the method.
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getEnum:(nullable int32_t *)value forKey:(int64_t)key;
- - (void)enumerateKeysAndEnumsUsingBlock:
- (void (^)(int64_t key, int32_t value, BOOL *stop))block;
- // These methods bypass the validationFunc to provide access to values that were not
- // known at the time the binary was compiled.
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getRawValue:(nullable int32_t *)rawValue forKey:(int64_t)key;
- - (void)enumerateKeysAndRawValuesUsingBlock:
- (void (^)(int64_t key, int32_t rawValue, BOOL *stop))block;
- - (void)addRawEntriesFromDictionary:(GPBInt64EnumDictionary *)otherDictionary;
- // If value is not a valid enumerator as defined by validationFunc, these
- // methods will assert in debug, and will log in release and assign the value
- // to the default value. Use the rawValue methods below to assign non enumerator
- // values.
- - (void)setEnum:(int32_t)value forKey:(int64_t)key;
- // This method bypass the validationFunc to provide setting of values that were not
- // known at the time the binary was compiled.
- - (void)setRawValue:(int32_t)rawValue forKey:(int64_t)key;
- // No validation applies to these methods.
- - (void)removeEnumForKey:(int64_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Int64 -> Object
- @interface GPBInt64ObjectDictionary<__covariant ObjectType> : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithObject:(ObjectType)object
- forKey:(int64_t)key;
- + (instancetype)dictionaryWithObjects:(const ObjectType GPB_UNSAFE_UNRETAINED [])objects
- forKeys:(const int64_t [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBInt64ObjectDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithObjects:(const ObjectType GPB_UNSAFE_UNRETAINED [])objects
- forKeys:(const int64_t [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBInt64ObjectDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- - (ObjectType)objectForKey:(int64_t)key;
- - (void)enumerateKeysAndObjectsUsingBlock:
- (void (^)(int64_t key, ObjectType object, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBInt64ObjectDictionary *)otherDictionary;
- - (void)setObject:(ObjectType)object forKey:(int64_t)key;
- - (void)removeObjectForKey:(int64_t)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Bool -> UInt32
- @interface GPBBoolUInt32Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithUInt32:(uint32_t)value
- forKey:(BOOL)key;
- + (instancetype)dictionaryWithUInt32s:(const uint32_t [])values
- forKeys:(const BOOL [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBBoolUInt32Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithUInt32s:(const uint32_t [])values
- forKeys:(const BOOL [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBBoolUInt32Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getUInt32:(nullable uint32_t *)value forKey:(BOOL)key;
- - (void)enumerateKeysAndUInt32sUsingBlock:
- (void (^)(BOOL key, uint32_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBBoolUInt32Dictionary *)otherDictionary;
- - (void)setUInt32:(uint32_t)value forKey:(BOOL)key;
- - (void)removeUInt32ForKey:(BOOL)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Bool -> Int32
- @interface GPBBoolInt32Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithInt32:(int32_t)value
- forKey:(BOOL)key;
- + (instancetype)dictionaryWithInt32s:(const int32_t [])values
- forKeys:(const BOOL [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBBoolInt32Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithInt32s:(const int32_t [])values
- forKeys:(const BOOL [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBBoolInt32Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getInt32:(nullable int32_t *)value forKey:(BOOL)key;
- - (void)enumerateKeysAndInt32sUsingBlock:
- (void (^)(BOOL key, int32_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBBoolInt32Dictionary *)otherDictionary;
- - (void)setInt32:(int32_t)value forKey:(BOOL)key;
- - (void)removeInt32ForKey:(BOOL)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Bool -> UInt64
- @interface GPBBoolUInt64Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithUInt64:(uint64_t)value
- forKey:(BOOL)key;
- + (instancetype)dictionaryWithUInt64s:(const uint64_t [])values
- forKeys:(const BOOL [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBBoolUInt64Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithUInt64s:(const uint64_t [])values
- forKeys:(const BOOL [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBBoolUInt64Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getUInt64:(nullable uint64_t *)value forKey:(BOOL)key;
- - (void)enumerateKeysAndUInt64sUsingBlock:
- (void (^)(BOOL key, uint64_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBBoolUInt64Dictionary *)otherDictionary;
- - (void)setUInt64:(uint64_t)value forKey:(BOOL)key;
- - (void)removeUInt64ForKey:(BOOL)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Bool -> Int64
- @interface GPBBoolInt64Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithInt64:(int64_t)value
- forKey:(BOOL)key;
- + (instancetype)dictionaryWithInt64s:(const int64_t [])values
- forKeys:(const BOOL [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBBoolInt64Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithInt64s:(const int64_t [])values
- forKeys:(const BOOL [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBBoolInt64Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getInt64:(nullable int64_t *)value forKey:(BOOL)key;
- - (void)enumerateKeysAndInt64sUsingBlock:
- (void (^)(BOOL key, int64_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBBoolInt64Dictionary *)otherDictionary;
- - (void)setInt64:(int64_t)value forKey:(BOOL)key;
- - (void)removeInt64ForKey:(BOOL)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Bool -> Bool
- @interface GPBBoolBoolDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithBool:(BOOL)value
- forKey:(BOOL)key;
- + (instancetype)dictionaryWithBools:(const BOOL [])values
- forKeys:(const BOOL [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBBoolBoolDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithBools:(const BOOL [])values
- forKeys:(const BOOL [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBBoolBoolDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getBool:(nullable BOOL *)value forKey:(BOOL)key;
- - (void)enumerateKeysAndBoolsUsingBlock:
- (void (^)(BOOL key, BOOL value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBBoolBoolDictionary *)otherDictionary;
- - (void)setBool:(BOOL)value forKey:(BOOL)key;
- - (void)removeBoolForKey:(BOOL)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Bool -> Float
- @interface GPBBoolFloatDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithFloat:(float)value
- forKey:(BOOL)key;
- + (instancetype)dictionaryWithFloats:(const float [])values
- forKeys:(const BOOL [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBBoolFloatDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithFloats:(const float [])values
- forKeys:(const BOOL [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBBoolFloatDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getFloat:(nullable float *)value forKey:(BOOL)key;
- - (void)enumerateKeysAndFloatsUsingBlock:
- (void (^)(BOOL key, float value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBBoolFloatDictionary *)otherDictionary;
- - (void)setFloat:(float)value forKey:(BOOL)key;
- - (void)removeFloatForKey:(BOOL)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Bool -> Double
- @interface GPBBoolDoubleDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithDouble:(double)value
- forKey:(BOOL)key;
- + (instancetype)dictionaryWithDoubles:(const double [])values
- forKeys:(const BOOL [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBBoolDoubleDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithDoubles:(const double [])values
- forKeys:(const BOOL [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBBoolDoubleDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getDouble:(nullable double *)value forKey:(BOOL)key;
- - (void)enumerateKeysAndDoublesUsingBlock:
- (void (^)(BOOL key, double value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBBoolDoubleDictionary *)otherDictionary;
- - (void)setDouble:(double)value forKey:(BOOL)key;
- - (void)removeDoubleForKey:(BOOL)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Bool -> Enum
- @interface GPBBoolEnumDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- @property(nonatomic, readonly) GPBEnumValidationFunc validationFunc;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- rawValue:(int32_t)rawValue
- forKey:(BOOL)key;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- rawValues:(const int32_t [])values
- forKeys:(const BOOL [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBBoolEnumDictionary *)dictionary;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- capacity:(NSUInteger)numItems;
- - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func;
- - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
- rawValues:(const int32_t [])values
- forKeys:(const BOOL [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBBoolEnumDictionary *)dictionary;
- - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
- capacity:(NSUInteger)numItems;
- // These will return kGPBUnrecognizedEnumeratorValue if the value for the key
- // is not a valid enumerator as defined by validationFunc. If the actual value is
- // desired, use "raw" version of the method.
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getEnum:(nullable int32_t *)value forKey:(BOOL)key;
- - (void)enumerateKeysAndEnumsUsingBlock:
- (void (^)(BOOL key, int32_t value, BOOL *stop))block;
- // These methods bypass the validationFunc to provide access to values that were not
- // known at the time the binary was compiled.
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getRawValue:(nullable int32_t *)rawValue forKey:(BOOL)key;
- - (void)enumerateKeysAndRawValuesUsingBlock:
- (void (^)(BOOL key, int32_t rawValue, BOOL *stop))block;
- - (void)addRawEntriesFromDictionary:(GPBBoolEnumDictionary *)otherDictionary;
- // If value is not a valid enumerator as defined by validationFunc, these
- // methods will assert in debug, and will log in release and assign the value
- // to the default value. Use the rawValue methods below to assign non enumerator
- // values.
- - (void)setEnum:(int32_t)value forKey:(BOOL)key;
- // This method bypass the validationFunc to provide setting of values that were not
- // known at the time the binary was compiled.
- - (void)setRawValue:(int32_t)rawValue forKey:(BOOL)key;
- // No validation applies to these methods.
- - (void)removeEnumForKey:(BOOL)aKey;
- - (void)removeAll;
- @end
- #pragma mark - Bool -> Object
- @interface GPBBoolObjectDictionary<__covariant ObjectType> : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithObject:(ObjectType)object
- forKey:(BOOL)key;
- + (instancetype)dictionaryWithObjects:(const ObjectType GPB_UNSAFE_UNRETAINED [])objects
- forKeys:(const BOOL [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBBoolObjectDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithObjects:(const ObjectType GPB_UNSAFE_UNRETAINED [])objects
- forKeys:(const BOOL [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBBoolObjectDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- - (ObjectType)objectForKey:(BOOL)key;
- - (void)enumerateKeysAndObjectsUsingBlock:
- (void (^)(BOOL key, ObjectType object, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBBoolObjectDictionary *)otherDictionary;
- - (void)setObject:(ObjectType)object forKey:(BOOL)key;
- - (void)removeObjectForKey:(BOOL)aKey;
- - (void)removeAll;
- @end
- #pragma mark - String -> UInt32
- @interface GPBStringUInt32Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithUInt32:(uint32_t)value
- forKey:(NSString *)key;
- + (instancetype)dictionaryWithUInt32s:(const uint32_t [])values
- forKeys:(const NSString * GPB_UNSAFE_UNRETAINED [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBStringUInt32Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithUInt32s:(const uint32_t [])values
- forKeys:(const NSString * GPB_UNSAFE_UNRETAINED [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBStringUInt32Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getUInt32:(nullable uint32_t *)value forKey:(NSString *)key;
- - (void)enumerateKeysAndUInt32sUsingBlock:
- (void (^)(NSString *key, uint32_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBStringUInt32Dictionary *)otherDictionary;
- - (void)setUInt32:(uint32_t)value forKey:(NSString *)key;
- - (void)removeUInt32ForKey:(NSString *)aKey;
- - (void)removeAll;
- @end
- #pragma mark - String -> Int32
- @interface GPBStringInt32Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithInt32:(int32_t)value
- forKey:(NSString *)key;
- + (instancetype)dictionaryWithInt32s:(const int32_t [])values
- forKeys:(const NSString * GPB_UNSAFE_UNRETAINED [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBStringInt32Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithInt32s:(const int32_t [])values
- forKeys:(const NSString * GPB_UNSAFE_UNRETAINED [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBStringInt32Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getInt32:(nullable int32_t *)value forKey:(NSString *)key;
- - (void)enumerateKeysAndInt32sUsingBlock:
- (void (^)(NSString *key, int32_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBStringInt32Dictionary *)otherDictionary;
- - (void)setInt32:(int32_t)value forKey:(NSString *)key;
- - (void)removeInt32ForKey:(NSString *)aKey;
- - (void)removeAll;
- @end
- #pragma mark - String -> UInt64
- @interface GPBStringUInt64Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithUInt64:(uint64_t)value
- forKey:(NSString *)key;
- + (instancetype)dictionaryWithUInt64s:(const uint64_t [])values
- forKeys:(const NSString * GPB_UNSAFE_UNRETAINED [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBStringUInt64Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithUInt64s:(const uint64_t [])values
- forKeys:(const NSString * GPB_UNSAFE_UNRETAINED [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBStringUInt64Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getUInt64:(nullable uint64_t *)value forKey:(NSString *)key;
- - (void)enumerateKeysAndUInt64sUsingBlock:
- (void (^)(NSString *key, uint64_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBStringUInt64Dictionary *)otherDictionary;
- - (void)setUInt64:(uint64_t)value forKey:(NSString *)key;
- - (void)removeUInt64ForKey:(NSString *)aKey;
- - (void)removeAll;
- @end
- #pragma mark - String -> Int64
- @interface GPBStringInt64Dictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithInt64:(int64_t)value
- forKey:(NSString *)key;
- + (instancetype)dictionaryWithInt64s:(const int64_t [])values
- forKeys:(const NSString * GPB_UNSAFE_UNRETAINED [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBStringInt64Dictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithInt64s:(const int64_t [])values
- forKeys:(const NSString * GPB_UNSAFE_UNRETAINED [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBStringInt64Dictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getInt64:(nullable int64_t *)value forKey:(NSString *)key;
- - (void)enumerateKeysAndInt64sUsingBlock:
- (void (^)(NSString *key, int64_t value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBStringInt64Dictionary *)otherDictionary;
- - (void)setInt64:(int64_t)value forKey:(NSString *)key;
- - (void)removeInt64ForKey:(NSString *)aKey;
- - (void)removeAll;
- @end
- #pragma mark - String -> Bool
- @interface GPBStringBoolDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithBool:(BOOL)value
- forKey:(NSString *)key;
- + (instancetype)dictionaryWithBools:(const BOOL [])values
- forKeys:(const NSString * GPB_UNSAFE_UNRETAINED [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBStringBoolDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithBools:(const BOOL [])values
- forKeys:(const NSString * GPB_UNSAFE_UNRETAINED [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBStringBoolDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getBool:(nullable BOOL *)value forKey:(NSString *)key;
- - (void)enumerateKeysAndBoolsUsingBlock:
- (void (^)(NSString *key, BOOL value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBStringBoolDictionary *)otherDictionary;
- - (void)setBool:(BOOL)value forKey:(NSString *)key;
- - (void)removeBoolForKey:(NSString *)aKey;
- - (void)removeAll;
- @end
- #pragma mark - String -> Float
- @interface GPBStringFloatDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithFloat:(float)value
- forKey:(NSString *)key;
- + (instancetype)dictionaryWithFloats:(const float [])values
- forKeys:(const NSString * GPB_UNSAFE_UNRETAINED [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBStringFloatDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithFloats:(const float [])values
- forKeys:(const NSString * GPB_UNSAFE_UNRETAINED [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBStringFloatDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getFloat:(nullable float *)value forKey:(NSString *)key;
- - (void)enumerateKeysAndFloatsUsingBlock:
- (void (^)(NSString *key, float value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBStringFloatDictionary *)otherDictionary;
- - (void)setFloat:(float)value forKey:(NSString *)key;
- - (void)removeFloatForKey:(NSString *)aKey;
- - (void)removeAll;
- @end
- #pragma mark - String -> Double
- @interface GPBStringDoubleDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithDouble:(double)value
- forKey:(NSString *)key;
- + (instancetype)dictionaryWithDoubles:(const double [])values
- forKeys:(const NSString * GPB_UNSAFE_UNRETAINED [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBStringDoubleDictionary *)dictionary;
- + (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- - (instancetype)initWithDoubles:(const double [])values
- forKeys:(const NSString * GPB_UNSAFE_UNRETAINED [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBStringDoubleDictionary *)dictionary;
- - (instancetype)initWithCapacity:(NSUInteger)numItems;
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getDouble:(nullable double *)value forKey:(NSString *)key;
- - (void)enumerateKeysAndDoublesUsingBlock:
- (void (^)(NSString *key, double value, BOOL *stop))block;
- - (void)addEntriesFromDictionary:(GPBStringDoubleDictionary *)otherDictionary;
- - (void)setDouble:(double)value forKey:(NSString *)key;
- - (void)removeDoubleForKey:(NSString *)aKey;
- - (void)removeAll;
- @end
- #pragma mark - String -> Enum
- @interface GPBStringEnumDictionary : NSObject <NSCopying>
- @property(nonatomic, readonly) NSUInteger count;
- @property(nonatomic, readonly) GPBEnumValidationFunc validationFunc;
- + (instancetype)dictionary;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- rawValue:(int32_t)rawValue
- forKey:(NSString *)key;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- rawValues:(const int32_t [])values
- forKeys:(const NSString * GPB_UNSAFE_UNRETAINED [])keys
- count:(NSUInteger)count;
- + (instancetype)dictionaryWithDictionary:(GPBStringEnumDictionary *)dictionary;
- + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- capacity:(NSUInteger)numItems;
- - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func;
- - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
- rawValues:(const int32_t [])values
- forKeys:(const NSString * GPB_UNSAFE_UNRETAINED [])keys
- count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithDictionary:(GPBStringEnumDictionary *)dictionary;
- - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
- capacity:(NSUInteger)numItems;
- // These will return kGPBUnrecognizedEnumeratorValue if the value for the key
- // is not a valid enumerator as defined by validationFunc. If the actual value is
- // desired, use "raw" version of the method.
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getEnum:(nullable int32_t *)value forKey:(NSString *)key;
- - (void)enumerateKeysAndEnumsUsingBlock:
- (void (^)(NSString *key, int32_t value, BOOL *stop))block;
- // These methods bypass the validationFunc to provide access to values that were not
- // known at the time the binary was compiled.
- // Returns YES/NO to indicate if the key was found or not, filling in the value
- // only when the key was found.
- - (BOOL)getRawValue:(nullable int32_t *)rawValue forKey:(NSString *)key;
- - (void)enumerateKeysAndRawValuesUsingBlock:
- (void (^)(NSString *key, int32_t rawValue, BOOL *stop))block;
- - (void)addRawEntriesFromDictionary:(GPBStringEnumDictionary *)otherDictionary;
- // If value is not a valid enumerator as defined by validationFunc, these
- // methods will assert in debug, and will log in release and assign the value
- // to the default value. Use the rawValue methods below to assign non enumerator
- // values.
- - (void)setEnum:(int32_t)value forKey:(NSString *)key;
- // This method bypass the validationFunc to provide setting of values that were not
- // known at the time the binary was compiled.
- - (void)setRawValue:(int32_t)rawValue forKey:(NSString *)key;
- // No validation applies to these methods.
- - (void)removeEnumForKey:(NSString *)aKey;
- - (void)removeAll;
- @end
- //%PDDM-EXPAND-END DECLARE_DICTIONARIES()
- NS_ASSUME_NONNULL_END
- //%PDDM-DEFINE DECLARE_DICTIONARIES()
- //%DICTIONARY_INTERFACES_FOR_POD_KEY(UInt32, uint32_t)
- //%DICTIONARY_INTERFACES_FOR_POD_KEY(Int32, int32_t)
- //%DICTIONARY_INTERFACES_FOR_POD_KEY(UInt64, uint64_t)
- //%DICTIONARY_INTERFACES_FOR_POD_KEY(Int64, int64_t)
- //%DICTIONARY_INTERFACES_FOR_POD_KEY(Bool, BOOL)
- //%DICTIONARY_POD_INTERFACES_FOR_KEY(String, NSString, *, OBJECT)
- //%PDDM-DEFINE DICTIONARY_INTERFACES_FOR_POD_KEY(KEY_NAME, KEY_TYPE)
- //%DICTIONARY_POD_INTERFACES_FOR_KEY(KEY_NAME, KEY_TYPE, , POD)
- //%DICTIONARY_POD_KEY_TO_OBJECT_INTERFACE(KEY_NAME, KEY_TYPE, Object, ObjectType)
- //%PDDM-DEFINE DICTIONARY_POD_INTERFACES_FOR_KEY(KEY_NAME, KEY_TYPE, KisP, KHELPER)
- //%DICTIONARY_KEY_TO_POD_INTERFACE(KEY_NAME, KEY_TYPE, KisP, KHELPER, UInt32, uint32_t)
- //%DICTIONARY_KEY_TO_POD_INTERFACE(KEY_NAME, KEY_TYPE, KisP, KHELPER, Int32, int32_t)
- //%DICTIONARY_KEY_TO_POD_INTERFACE(KEY_NAME, KEY_TYPE, KisP, KHELPER, UInt64, uint64_t)
- //%DICTIONARY_KEY_TO_POD_INTERFACE(KEY_NAME, KEY_TYPE, KisP, KHELPER, Int64, int64_t)
- //%DICTIONARY_KEY_TO_POD_INTERFACE(KEY_NAME, KEY_TYPE, KisP, KHELPER, Bool, BOOL)
- //%DICTIONARY_KEY_TO_POD_INTERFACE(KEY_NAME, KEY_TYPE, KisP, KHELPER, Float, float)
- //%DICTIONARY_KEY_TO_POD_INTERFACE(KEY_NAME, KEY_TYPE, KisP, KHELPER, Double, double)
- //%DICTIONARY_KEY_TO_ENUM_INTERFACE(KEY_NAME, KEY_TYPE, KisP, KHELPER, Enum, int32_t)
- //%PDDM-DEFINE DICTIONARY_KEY_TO_POD_INTERFACE(KEY_NAME, KEY_TYPE, KisP, KHELPER, VALUE_NAME, VALUE_TYPE)
- //%DICTIONARY_COMMON_INTERFACE(KEY_NAME, KEY_TYPE, KisP, KHELPER, VALUE_NAME, VALUE_TYPE, POD, VALUE_NAME, value)
- //%PDDM-DEFINE DICTIONARY_POD_KEY_TO_OBJECT_INTERFACE(KEY_NAME, KEY_TYPE, VALUE_NAME, VALUE_TYPE)
- //%DICTIONARY_COMMON_INTERFACE(KEY_NAME, KEY_TYPE, , POD, VALUE_NAME, VALUE_TYPE, OBJECT, Object, object)
- //%PDDM-DEFINE VALUE_FOR_KEY_POD(KEY_TYPE, VALUE_TYPE, VNAME)
- //%// Returns YES/NO to indicate if the key was found or not, filling in the value
- //%// only when the key was found.
- //%- (BOOL)get##VNAME##:(nullable VALUE_TYPE *)value forKey:(KEY_TYPE)key;
- //%PDDM-DEFINE VALUE_FOR_KEY_OBJECT(KEY_TYPE, VALUE_TYPE, VNAME)
- //%- (VALUE_TYPE)objectForKey:(KEY_TYPE)key;
- //%PDDM-DEFINE VALUE_FOR_KEY_Enum(KEY_TYPE, VALUE_TYPE, VNAME)
- //%VALUE_FOR_KEY_POD(KEY_TYPE, VALUE_TYPE, VNAME)
- //%PDDM-DEFINE ARRAY_ARG_MODIFIERPOD()
- // Nothing
- //%PDDM-DEFINE ARRAY_ARG_MODIFIEREnum()
- // Nothing
- //%PDDM-DEFINE ARRAY_ARG_MODIFIEROBJECT()
- //%GPB_UNSAFE_UNRETAINED ##
- //%PDDM-DEFINE DICTIONARY_CLASS_DECLPOD(KEY_NAME, VALUE_NAME, VALUE_TYPE)
- //%GPB##KEY_NAME##VALUE_NAME##Dictionary
- //%PDDM-DEFINE DICTIONARY_CLASS_DECLEnum(KEY_NAME, VALUE_NAME, VALUE_TYPE)
- //%GPB##KEY_NAME##VALUE_NAME##Dictionary
- //%PDDM-DEFINE DICTIONARY_CLASS_DECLOBJECT(KEY_NAME, VALUE_NAME, VALUE_TYPE)
- //%GPB##KEY_NAME##VALUE_NAME##Dictionary<__covariant VALUE_TYPE>
- //%PDDM-DEFINE DICTIONARY_COMMON_INTERFACE(KEY_NAME, KEY_TYPE, KisP, KHELPER, VALUE_NAME, VALUE_TYPE, VHELPER, VNAME, VNAME_VAR)
- //%#pragma mark - KEY_NAME -> VALUE_NAME
- //%
- //%@interface DICTIONARY_CLASS_DECL##VHELPER(KEY_NAME, VALUE_NAME, VALUE_TYPE) : NSObject <NSCopying>
- //%
- //%@property(nonatomic, readonly) NSUInteger count;
- //%
- //%+ (instancetype)dictionary;
- //%+ (instancetype)dictionaryWith##VNAME##:(VALUE_TYPE)##VNAME_VAR
- //% ##VNAME$S## forKey:(KEY_TYPE##KisP$S##KisP)key;
- //%+ (instancetype)dictionaryWith##VNAME##s:(const VALUE_TYPE ARRAY_ARG_MODIFIER##VHELPER()[])##VNAME_VAR##s
- //% ##VNAME$S## forKeys:(const KEY_TYPE##KisP$S##KisP ARRAY_ARG_MODIFIER##KHELPER()[])keys
- //% ##VNAME$S## count:(NSUInteger)count;
- //%+ (instancetype)dictionaryWithDictionary:(GPB##KEY_NAME##VALUE_NAME##Dictionary *)dictionary;
- //%+ (instancetype)dictionaryWithCapacity:(NSUInteger)numItems;
- //%
- //%- (instancetype)initWith##VNAME##s:(const VALUE_TYPE ARRAY_ARG_MODIFIER##VHELPER()[])##VNAME_VAR##s
- //% ##VNAME$S## forKeys:(const KEY_TYPE##KisP$S##KisP ARRAY_ARG_MODIFIER##KHELPER()[])keys
- //% ##VNAME$S## count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- //%- (instancetype)initWithDictionary:(GPB##KEY_NAME##VALUE_NAME##Dictionary *)dictionary;
- //%- (instancetype)initWithCapacity:(NSUInteger)numItems;
- //%
- //%DICTIONARY_IMMUTABLE_INTERFACE(KEY_NAME, KEY_TYPE, KisP, VALUE_NAME, VALUE_TYPE, VHELPER, VNAME, VNAME_VAR)
- //%
- //%- (void)addEntriesFromDictionary:(GPB##KEY_NAME##VALUE_NAME##Dictionary *)otherDictionary;
- //%
- //%DICTIONARY_MUTABLE_INTERFACE(KEY_NAME, KEY_TYPE, KisP, VALUE_NAME, VALUE_TYPE, VHELPER, VNAME, VNAME_VAR)
- //%
- //%@end
- //%
- //%PDDM-DEFINE DICTIONARY_KEY_TO_ENUM_INTERFACE(KEY_NAME, KEY_TYPE, KisP, KHELPER, VALUE_NAME, VALUE_TYPE)
- //%DICTIONARY_KEY_TO_ENUM_INTERFACE2(KEY_NAME, KEY_TYPE, KisP, KHELPER, VALUE_NAME, VALUE_TYPE, Enum)
- //%PDDM-DEFINE DICTIONARY_KEY_TO_ENUM_INTERFACE2(KEY_NAME, KEY_TYPE, KisP, KHELPER, VALUE_NAME, VALUE_TYPE, VHELPER)
- //%#pragma mark - KEY_NAME -> VALUE_NAME
- //%
- //%@interface GPB##KEY_NAME##VALUE_NAME##Dictionary : NSObject <NSCopying>
- //%
- //%@property(nonatomic, readonly) NSUInteger count;
- //%@property(nonatomic, readonly) GPBEnumValidationFunc validationFunc;
- //%
- //%+ (instancetype)dictionary;
- //%+ (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func;
- //%+ (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- //% rawValue:(VALUE_TYPE)rawValue
- //% forKey:(KEY_TYPE##KisP$S##KisP)key;
- //%+ (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- //% rawValues:(const VALUE_TYPE ARRAY_ARG_MODIFIER##VHELPER()[])values
- //% forKeys:(const KEY_TYPE##KisP$S##KisP ARRAY_ARG_MODIFIER##KHELPER()[])keys
- //% count:(NSUInteger)count;
- //%+ (instancetype)dictionaryWithDictionary:(GPB##KEY_NAME##VALUE_NAME##Dictionary *)dictionary;
- //%+ (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
- //% capacity:(NSUInteger)numItems;
- //%
- //%- (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func;
- //%- (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
- //% rawValues:(const VALUE_TYPE ARRAY_ARG_MODIFIER##VHELPER()[])values
- //% forKeys:(const KEY_TYPE##KisP$S##KisP ARRAY_ARG_MODIFIER##KHELPER()[])keys
- //% count:(NSUInteger)count NS_DESIGNATED_INITIALIZER;
- //%- (instancetype)initWithDictionary:(GPB##KEY_NAME##VALUE_NAME##Dictionary *)dictionary;
- //%- (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
- //% capacity:(NSUInteger)numItems;
- //%
- //%// These will return kGPBUnrecognizedEnumeratorValue if the value for the key
- //%// is not a valid enumerator as defined by validationFunc. If the actual value is
- //%// desired, use "raw" version of the method.
- //%
- //%DICTIONARY_IMMUTABLE_INTERFACE(KEY_NAME, KEY_TYPE, KisP, VALUE_NAME, VALUE_TYPE, VHELPER, Enum, value)
- //%
- //%// These methods bypass the validationFunc to provide access to values that were not
- //%// known at the time the binary was compiled.
- //%
- //%// Returns YES/NO to indicate if the key was found or not, filling in the value
- //%// only when the key was found.
- //%- (BOOL)getRawValue:(nullable VALUE_TYPE *)rawValue forKey:(KEY_TYPE##KisP$S##KisP)key;
- //%
- //%- (void)enumerateKeysAndRawValuesUsingBlock:
- //% (void (^)(KEY_TYPE KisP##key, VALUE_TYPE rawValue, BOOL *stop))block;
- //%
- //%- (void)addRawEntriesFromDictionary:(GPB##KEY_NAME##VALUE_NAME##Dictionary *)otherDictionary;
- //%
- //%// If value is not a valid enumerator as defined by validationFunc, these
- //%// methods will assert in debug, and will log in release and assign the value
- //%// to the default value. Use the rawValue methods below to assign non enumerator
- //%// values.
- //%
- //%DICTIONARY_MUTABLE_INTERFACE(KEY_NAME, KEY_TYPE, KisP, VALUE_NAME, VALUE_TYPE, VHELPER, Enum, value)
- //%
- //%@end
- //%
- //%PDDM-DEFINE DICTIONARY_IMMUTABLE_INTERFACE(KEY_NAME, KEY_TYPE, KisP, VALUE_NAME, VALUE_TYPE, VHELPER, VNAME, VNAME_VAR)
- //%VALUE_FOR_KEY_##VHELPER(KEY_TYPE##KisP$S##KisP, VALUE_TYPE, VNAME)
- //%
- //%- (void)enumerateKeysAnd##VNAME##sUsingBlock:
- //% (void (^)(KEY_TYPE KisP##key, VALUE_TYPE VNAME_VAR, BOOL *stop))block;
- //%PDDM-DEFINE DICTIONARY_MUTABLE_INTERFACE(KEY_NAME, KEY_TYPE, KisP, VALUE_NAME, VALUE_TYPE, VHELPER, VNAME, VNAME_VAR)
- //%- (void)set##VNAME##:(VALUE_TYPE)##VNAME_VAR forKey:(KEY_TYPE##KisP$S##KisP)key;
- //%DICTIONARY_EXTRA_MUTABLE_METHODS_##VHELPER(KEY_NAME, KEY_TYPE, KisP, VALUE_NAME, VALUE_TYPE)
- //%- (void)remove##VNAME##ForKey:(KEY_TYPE##KisP$S##KisP)aKey;
- //%- (void)removeAll;
- //%PDDM-DEFINE DICTIONARY_EXTRA_MUTABLE_METHODS_POD(KEY_NAME, KEY_TYPE, KisP, VALUE_NAME, VALUE_TYPE)
- // Empty
- //%PDDM-DEFINE DICTIONARY_EXTRA_MUTABLE_METHODS_OBJECT(KEY_NAME, KEY_TYPE, KisP, VALUE_NAME, VALUE_TYPE)
- // Empty
- //%PDDM-DEFINE DICTIONARY_EXTRA_MUTABLE_METHODS_Enum(KEY_NAME, KEY_TYPE, KisP, VALUE_NAME, VALUE_TYPE)
- //%
- //%// This method bypass the validationFunc to provide setting of values that were not
- //%// known at the time the binary was compiled.
- //%- (void)setRawValue:(VALUE_TYPE)rawValue forKey:(KEY_TYPE##KisP$S##KisP)key;
- //%
- //%// No validation applies to these methods.
- //%
|