2017-06-25 23:06:01 +02:00
|
|
|
//
|
|
|
|
// RSParserInternal.h
|
|
|
|
// RSParser
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 12/26/16.
|
|
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
@import Foundation;
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2017-06-26 01:32:07 +02:00
|
|
|
BOOL RSParserObjectIsEmpty(id _Nullable obj);
|
2017-06-25 23:06:01 +02:00
|
|
|
BOOL RSParserStringIsEmpty(NSString * _Nullable s);
|
|
|
|
|
|
|
|
|
|
|
|
@interface NSDictionary (RSParserInternal)
|
|
|
|
|
|
|
|
- (nullable id)rsparser_objectForCaseInsensitiveKey:(NSString *)key;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|
|
|