作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否有任何关于 postulate
的性质和用途的最新信息?在 idris build ?教程/手册中没有关于该主题的任何内容,我似乎也无法在 wiki 中找到任何内容。 TIA。
最佳答案
我认为我们打算将 wiki 发展为更多关于此类事情的引用:
https://github.com/idris-lang/Idris-dev/wiki/Manualpostulate
的语法是:
postulate identifier : type
postulate n : Nat
postulate whyNot : 5 = 6
class Semigroup a where
op : a -> a -> a
semigroupOpIsAssoc : (x, y, z : a) -> op (op x y) z = op x (op y z)
instance Semigroupz Int where
op = (+)
semigroupOpIsAssoc x y z = intAdditionIsAssoc
where postulate intAdditionIsAssoc : (x + y) + z = x + (y + z)
Unit
类型:
postulate foo : Unit
main : IO ()
main = print foo
Unit
的值
show
的实现实际上并不需要类型.
关于idris - idris 公设,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27999552/
是否有任何关于 postulate 的性质和用途的最新信息?在 idris build ?教程/手册中没有关于该主题的任何内容,我似乎也无法在 wiki 中找到任何内容。 TIA。 最佳答案 我认为我
我是一名优秀的程序员,十分优秀!