Haskell 中的“~”是什么意思?

发布于 2024-08-21 17:10:25 字数 310 浏览 11 评论 0原文

我正在研究 mtl 库并尝试做一些我自己的 MonadTransformers。我正在检查 Control.Monad.State.StateT 声明,在所有代码中,我看到以下语法:

execStateT :: (Monad m) => StateT s m a -> s -> m s
execStateT m s = do
  ~(_, s') <- runStateT m s
  return s'

这个 ~ 操作数是什么意思?

I'm studying the mtl library and trying to do some MonadTransformers of my own. I was checking the Control.Monad.State.StateT declaration, and across all the code, I see this syntax:

execStateT :: (Monad m) => StateT s m a -> s -> m s
execStateT m s = do
  ~(_, s') <- runStateT m s
  return s'

What does this ~ operand mean?

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

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

发布评论

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

评论(3

不羁少年 2024-08-28 17:10:25

这是 Haskell 中惰性模式的表示法。我不能说我很熟悉它,但是从这里

它被称为惰性模式,并且具有
形式〜帕特。惰性模式是
无可辩驳:匹配一个值 v
反对~pat总是成功的,
不管帕特。操作上
说起来,如果 pat 中的标识符是
后来在右侧“使用”,
它将绑定到该部分
如果 v 为
成功匹配 pat,并且 ⊥
否则。

另外,本节可能会有用。

This is the notation for a lazy pattern in Haskell. I can't say that I'm familiar with it but from here:

It is called a lazy pattern, and has
the form ~pat. Lazy patterns are
irrefutable: matching a value v
against ~pat always succeeds,
regardless of pat. Operationally
speaking, if an identifier in pat is
later "used" on the right-hand-side,
it will be bound to that portion of
the value that would result if v were
to successfully match pat, and ⊥
otherwise.

Also, this section may be useful.

最近可好 2024-08-28 17:10:25

对于正常的模式匹配,需要评估应该匹配的值,以便可以将其与模式进行比较。

~ 表示惰性模式匹配:只是假设该值将与模式匹配。如果实际使用了匹配变量的值,则稍后才会进行匹配。

For a normal pattern match, the value that should be matched needs to be evaluated, so that it can be compared against the pattern.

~ denotes a lazy pattern match: It is just assumed that the value will match the pattern. The match is then only done later, if the value of a matched variable is actually used.

单调的奢华 2024-08-28 17:10:25

它相当于

execStateT m s = do
  r <- runStateT m s
  return (snd r)

execStateT m s =
  runStateT m s >>= return . snd

It's equivalent to

execStateT m s = do
  r <- runStateT m s
  return (snd r)

or

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