Instance Methodgrdb 7.3.0GRDB
next
Cursor.swift:801func next() throws -> Base.Element?
func next() throws -> Base.Element?
where Base:Cursor
import GRDB
A toolkit for SQLite databases, with a focus on application development
final class DropFirstCursor<Base> where Base : Cursor
A Cursor
that consumes and drops n elements from an underlying Base
cursor before possibly returning the first available element.
associatedtype Element
The type of element traversed by the cursor.
protocol Cursor<Element> : AnyObject
A type that supplies the values of some external resource, one at a time.