22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
*/
#import "PGResultRow.h"
OF_ASSUME_NONNULL_BEGIN
@interface PGResultRow ()
+ (instancetype)pg_rowWithResult: (PGResult *)result
row: (int)row;
- (instancetype)pg_initWithResult: (PGResult *)result
row: (int)row;
@end
OF_ASSUME_NONNULL_END
|
|
<
|
<
|
22
23
24
25
26
27
28
29
30
31
32
33
|
*/
#import "PGResultRow.h"
OF_ASSUME_NONNULL_BEGIN
@interface PGResultRow ()
+ (instancetype)pg_rowWithResult: (PGResult *)result row: (int)row;
- (instancetype)pg_initWithResult: (PGResult *)result row: (int)row;
@end
OF_ASSUME_NONNULL_END
|