Cog/Utils/NSDictionary+Optional.h
Christopher Snowhill 234fb63267 Housecleaning: Cleaned up a bunch of warnings
And a bunch of potential memory leaks, and some misbehavior that could
occur due to not checking for errors properly.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2025-06-24 03:54:05 -07:00

7 lines
246 B
Objective-C

#import <Foundation/Foundation.h>
@interface NSDictionary (Optional)
+ (NSDictionary *_Nonnull)initWithOptionalObjects:(const id _Nullable [_Nullable])objects forKeys:(id<NSCopying> const _Nullable [_Nullable])keys count:(NSUInteger)cnt;
@end