- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
do
表示法允许我们在没有过多嵌套的情况下表达 monadic 代码,因此
main = getLine >>= \ a ->
getLine >>= \ b ->
putStrLn (a ++ b)
main = do
a <- getLine
b <- getLine
putStrLn (a ++ b)
... #expression ...
代表
do { x <- expression; return (... x ...) }
。例如,
foo = f a #(b 1) c
将被脱糖为:
foo = do { x <- b 1; return (f a x c) }
。那么上面的代码可以表示为:
main = let a = #getLine in
let b = #getLine in
putStrLn (a ++ b)
main = do
x <- getLine
let a = x in
return (do
x' <- getLine
let b = x' in
return (putStrLn (a ++ b)))
main = putStrLn (#(getLine) ++ #(getLine))
最佳答案
putStrLn
已经是 String -> IO ()
,所以你的脱糖 ... return (... return (putStrLn (a ++ b)))
最终具有类型 IO (IO (IO ()))
,这可能不是你想要的:运行这个程序不会打印任何东西!
更一般地说,您的符号不能表达任何不以 do
结尾的 return
-block。 [见德里克埃尔金斯的评论。]
我不相信你的符号可以表达 join
,它可以用 do
表达而无需任何附加功能:
join :: Monad m => m (m a) -> m a
join mx = do { x <- mx; x }
但是,您可以将
fmap
限制为
Monad
:
fmap' :: Monad m => (a -> b) -> m a -> m b
fmap' f mx = f #mx
和
>>=
(以及其他所有内容)可以使用
fmap'
和
join
表示。所以添加
join
会使你的符号完整,但在很多情况下仍然不方便,因为你最终需要很多
join
s。
return
,则会得到与
Idris' bang notation 非常相似的内容:
In many cases, using do-notation can make programs unnecessarily verbose, particularly in cases such as
m_add
above where the value bound is used once, immediately. In these cases, we can use a shorthand version, as follows:m_add : Maybe Int -> Maybe Int -> Maybe Int
m_add x y = pure (!x + !y)The notation
!expr
means that the expressionexpr
should be evaluated and then implicitly bound. Conceptually, we can think of!
as being a prefix function with the following type:(!) : m a -> a
Note, however, that it is not really a function, merely syntax! In practice, a subexpression
!expr
will liftexpr
as high as possible within its current scope, bind it to a fresh namex
, and replace!expr
withx
. Expressions are lifted depth first, left to right. In practice, !-notation allows us to program in a more direct style, while still giving a notational clue as to which expressions are monadic.For example, the expression:
let y = 42 in f !(g !(print y) !x)
is lifted to:
let y = 42 in do y' <- print y
x' <- x
g' <- g y' x'
f g'
关于haskell - 这种语法和 do-notation 一样具有表现力吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43433781/
我刚开始使用 Boost::xpressive 并发现它是一个优秀的库...我浏览了文档并尝试使用 !运算符(零或一),但无法编译 (VS2008)。 我想匹配一个可能以或不以“sip:”开头的 si
我想用 boost 匹配一个简单的表达式,但它的行为很奇怪......下面的代码应该匹配并显示第一个和第二个字符串中的“a”: #include #include #include "stdio.
我一直致力于 Protege 中的 Ontology。 我从在 Protege 中被归类为“DL Expressivity: SROIF(D)”的高表现力开始。 如果我是正确的,字母表示 - 按顺序
Zend Expressive 在使用 Zend View 时默认使用 layout 模板。我注意到 PhpRenderer 类中的 addTemplate($template) 函数,但是在哪里以及
我是一名优秀的程序员,十分优秀!