我在
blob,an immutable buffer for binary data中有一些字节,我正在寻找一种方法将它所包含的内容转换为
floating point data structure,
Num
,因为它是适合所有这3种格式的类,可以在$blob中
> IEEE Float
> IEEE Double
> IEEE Long Double
进行转换的最佳方式是什么?
解决方法
导入NativeCall,对所需类型的指针执行强制转换并取消引用结果:
use NativeCall; nativecast(Pointer[num32],$blob).deref;