当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


haskell decodeFloat用法及代码示例


Haskell语言Prelude模块中函数decodeFloat的用法及代码示例。

用法类型:

RealFloat a => a -> (Integer,Int)

应用于实数浮点数的函数encodeFloat返回以整数和适当缩放的 index (Int)表示的有效位数。

示例1:

输入:
decodeFloat 12.12
         
输出:
(12708741,-20)
         

示例2:

输入:
decodeFloat 1
         
输出:
(8388608,-23)
         

相关用法


注:本文由纯净天空筛选整理自 haskell decodeFloat。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。