哈斯克尔国际 -> Word64 转换

发布于 2024-10-10 17:36:43 字数 111 浏览 1 评论 0原文

这应该很简单。我有一个 Int,我想将其转换为 Word64。它永远不能小于 0。我不介意它是否有错误检查。看来我可以使用 fromIntegral 进行相反的转换,但我找不到反函数。

谢谢。

This should be pretty simple. I have an Int and I want to convert it to a Word64. It can never be less than 0. I don't mind if it has error checking or not. It seems I can do the opposite conversion using fromIntegral, but I can't find the inverse function.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挽清梦 2024-10-17 17:36:43

好吧,

fromIntegral :: (Integral a, Num b) => a -> b

应该完全能够从 Int 转换为 Word64,因为 IntIntegral的实例>Word64Num 的实例

well,

fromIntegral :: (Integral a, Num b) => a -> b

should be perfectly capable of converting from Int to Word64 since Int is an instance of Integral and Word64 is an instance of Num

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文