I have a really simple/dumb question.
I have a variable returned from a spark dataframe that looks like this:
Any = WrappedArray(101, 11, 119, 141, 238, 64, 45, 268, 31, 63, 86, 23, 24, 420, ...
All I want to do is cast this as a normal array so I can iterate through the integers. Even if I can just get it to the WrappedArray
type, I can get to array from there.