reinterpret
reinterpret(type, A)
Change the type-interpretation of a block of memory. For example, reinterpret(Float32, UInt32(7))
interprets the 4 bytes corresponding to UInt32(7)
as a Float32
. For arrays, this constructs an array with the same binary data as the given array, but with the specified element type.
Examples
See Also
User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.