Returns a cursor that points just after the last result returned.
If next() throws an exception, this function returns the end_cursor from
the last successful batch or throws the same exception if no batch was
successful.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2022-09-30 UTC."],[[["`ResultsIterator` is an iterator for results obtained from `Batcher` in Google App Engine's Datastore."],["It adheres to Python's iterator protocol, allowing the use of `for` loops to access results."],["The `cursor()` method provides a `Cursor` object that indicates the position just after the last result fetched."],["The `index_list()` method returns the list of indexes used in the query, or potentially None."],["The `next()` method is used to iterate to the next result, `__iter__` method will make the object iterable."]]],[]]