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
As of now it is cumbersome to get an array representation of a given ListFW.
ListFW
The only workaround right now is to use ListFW.forEach() to add data from the ListFW to a List<...> and then using List.toArray().
ListFW.forEach()
List<...>
List.toArray()
This new method should allow for builtin functionality for conversion to an array based on ListFW's generic type parameter.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As of now it is cumbersome to get an array representation of a given
ListFW
.The only workaround right now is to use
ListFW.forEach()
to add data from theListFW
to aList<...>
and then usingList.toArray()
.This new method should allow for builtin functionality for conversion to an array based on ListFW's generic type parameter.
The text was updated successfully, but these errors were encountered: