ColResultIterator
open class ColResultIterator : OptionalRustObject, IteratorProtocol
Iterator for ColResult
.
To iterate over the result set use standard iteration flows.
query.runColl { rows in
rows.forEach { value in
...
}
}
Note that iteration is consuming and can only be done once.
-
Declaration
Swift
public typealias Element = TypedValue
-
Declaration
Swift
open func next() -> Element?
-
Undocumented
Declaration
Swift
override open func cleanup(pointer: OpaquePointer)