Results
Results
is an auto-updating container type in Realm returned from object
queries.
Results can be queried with the same predicates as List<T>
and you can chain queries to further
filter query results.
Results cannot be created directly.
-
Returns a
GeneratorOf<T>
that yields successive elements in the results.Declaration
Swift
public func generate() -> GeneratorOf<T>
-
The position of the first element in a non-empty collection. Identical to endIndex in an empty collection.
Declaration
Swift
public var startIndex: Int { return 0 }
-
The collection’s
past the end
position. endIndex is not a valid argument to subscript, and is always reachable from startIndex by zero or more applications of successor().Declaration
Swift
public var endIndex: Int { return count }