blob: 89e9e65c64dfa8a406be00f790fc05823fc9c905 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#import <Foundation/Foundation.h>
#import "NSExpression+MGLPrivateAdditions.h"
@interface NSPredicate (MGLAdditions)
- (mbgl::style::Filter)mgl_filter;
+ (instancetype)mgl_predicateWithFilter:(mbgl::style::Filter)filter;
@end
@interface NSPredicate (MGLExpressionAdditions)
+ (instancetype)mgl_predicateWithJSONObject:(id)object;
@property (nonatomic, readonly) id mgl_jsonExpressionObject;
@end
|