12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol RLMBSON;
- @interface RLMFindOptions : NSObject
- @property (nonatomic) NSInteger limit;
- @property (nonatomic, nullable) id<RLMBSON> projection NS_REFINED_FOR_SWIFT;
- @property (nonatomic, nullable) id<RLMBSON> sort NS_REFINED_FOR_SWIFT;
- - (instancetype)initWithLimit:(NSInteger)limit
- projection:(id<RLMBSON> _Nullable)projection
- sort:(id<RLMBSON> _Nullable)sort
- NS_SWIFT_UNAVAILABLE("Please see FindOption");
- - (instancetype)initWithProjection:(id<RLMBSON> _Nullable)projection
- sort:(id<RLMBSON> _Nullable)sort
- NS_SWIFT_UNAVAILABLE("Please see FindOption");
- @end
- NS_ASSUME_NONNULL_END
|