CBLQueryRow
@interface CBLQueryRow : NSObjectA single result from a CBLQuery. The NSEnumeration returned by -[CBLQuery run:] produces these.
- 
                  
                  The number of values in this row (if the query has a returning specification.)DeclarationObjective-C @property (readonly, nonatomic) NSUInteger valueCount;Swift var valueCount: UInt { get }
- 
                  
                  The result value at the given index (if the query has a returning specification.)DeclarationObjective-C - (nullable id)valueAtIndex:(NSUInteger)index;Swift func value(at index: UInt) -> Any?ParametersindexThe value index. Return ValueThe result value. 
- 
                  
                  The result boolean value at the given index. DeclarationObjective-C - (_Bool)booleanAtIndex:(NSUInteger)index;Swift func boolean(at index: UInt) -> BoolParametersindexThe value index. Return ValueThe result boolean value. 
- 
                  
                  The result integer value at the given index. DeclarationObjective-C - (NSInteger)integerAtIndex:(NSUInteger)index;Swift func integer(at index: UInt) -> IntParametersindexThe value index. Return ValueThe result integer value. 
- 
                  
                  The result float value at the given index. DeclarationObjective-C - (float)floatAtIndex:(NSUInteger)index;Swift func float(at index: UInt) -> FloatParametersindexThe value index. Return ValueThe result float value. 
- 
                  
                  The result double value at the given index. DeclarationObjective-C - (double)doubleAtIndex:(NSUInteger)index;Swift func double(at index: UInt) -> DoubleParametersindexThe value index. Return ValueThe result double value. 
- 
                  
                  The result string value at the given index. DeclarationObjective-C - (nullable NSString *)stringAtIndex:(NSUInteger)index;Swift func string(at index: UInt) -> String?ParametersindexThe value index. Return ValueThe result string value. 
- 
                  
                  The result date value at the given index. DeclarationObjective-C - (nullable NSDate *)dateAtIndex:(NSUInteger)index;Swift func date(at index: UInt) -> Date?ParametersindexThe value index. Return ValueThe result date value. 
- 
                  
                  The result object value at the given index. DeclarationObjective-C - (nullable id)objectAtIndexedSubscript:(NSUInteger)subscript;Swift subscript(subscript: UInt) -> Any? { get }ParameterssubscriptThe value index. Return ValueThe result object value. 
- 
                  
                  Not Available. DeclarationObjective-C - (nonnull instancetype)init;
 CBLQueryRow Class Reference
        CBLQueryRow Class Reference