perl6 – 将Blob中的数据转换为Num

前端之家收集整理的这篇文章主要介绍了perl6 – 将Blob中的数据转换为Num前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_301_0@
我在 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;
原文链接:https://www.f2er.com/Perl/171322.html

猜你在找的Perl相关文章