Skip to content
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

Improve conversion from collections to arrays #14

Open
DanielGronau opened this issue May 26, 2019 · 0 comments
Open

Improve conversion from collections to arrays #14

DanielGronau opened this issue May 26, 2019 · 0 comments

Comments

@DanielGronau
Copy link

DanielGronau commented May 26, 2019

Java collections in Kotlin can be easily converted to arrays using reified generics, and it would be nice to have the same functionality directly on Vavr collections.

The implementation can be as simple as that:

inline fun <reified T> io.vavr.collection.List<T>.toTypedArray(): Array<T> = this.toJavaList().toTypedArray()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant