-
-
Notifications
You must be signed in to change notification settings - Fork 760
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for relative cursors. #8048
base: main
Are you sure you want to change the base?
Conversation
} | ||
} | ||
|
||
public record Cursor( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move out these two types.
/// <summary> | ||
/// Gets the index number of this page. | ||
/// </summary> | ||
public int? Index => _index; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure about the name of this yet.
@@ -72,7 +132,17 @@ public sealed class Page<T>( | |||
/// <returns> | |||
/// Returns a cursor for the item. | |||
/// </returns> | |||
public string CreateCursor(T item) => createCursor(item); | |||
public string CreateCursor(T item) => _createCursor(item, 0, 0, 0); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we remove this? Like instead have an extension method for the cursors.
No description provided.