What is the recommended way of converting between Data.Vector.Unboxed
and Data.Vector
. Specifically, I need to map a function over a vector which converts an unboxable element type such as Int
to a non-unboxable one such as Text
. I assume going through an intermediate list is not going to be very efficient.
You can use the convert function from Data.Vector.Generic
to change vector types, followed by a map
to do the per-element conversion.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With