We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 the following new table operations for parity with generated tables, as suggested by @azuendorf:
forEach
toSet().forEach
stream().distinct().forEach
get(int i)
i
<S extends T> Table<S> filterAs(Class<S> type)
instanceof
The text was updated successfully, but these errors were encountered:
Clashsoft
No branches or pull requests
Add the following new table operations for parity with generated tables, as suggested by @azuendorf:
forEach
as a shorthand fortoSet().forEach
/stream().distinct().forEach
.get(int i)
for getting the value in thei
th row of the current column.<S extends T> Table<S> filterAs(Class<S> type)
, which filters byinstanceof
and also returns a new table of the correct type.The text was updated successfully, but these errors were encountered: