Haskell 最小/最大双常数
Haskell 有没有办法获得常数,该常数是可以用双精度数表示的大于零的最大和最小可能正有理数?
Is there any way in Haskell to get the constant that is the largest and smallest possible positive rational number greater than zero that can be represented by doubles?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
GHC.Float 具有以下功能
floatRange
:这应该是你想要的。
GHC.Float has the function
floatRange
:which should be what you want.