后奏中的三元?

发布于 2024-11-05 06:08:39 字数 53 浏览 4 评论 0原文

我可以像在前奏中那样在后奏中做三元吗?换句话说,它是否会根据前奏中评估的内容触发不同的调用?

Can I do ternary in the postlude(s) the same way that I do them int he prelude? In other words have it fire off different calls depending on the say something was evaluated in the prelude?

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

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

发布评论

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

评论(1

单调的奢华 2024-11-12 06:08:39

是的。您可以在 postlude 表达式中包含 保护条件。这适用于显式事件引发和持久变量修改。 if 后面的表达式可以是任何有效的表达式,包括函数。

例子:

fired {
  raise explicit event "foo" if cheese == 5;
}

Yes. You can include a guard condition on a postlude expression. This works for both explicit event raising and persistant variable modification. The expression following if can be any valid expression, including functions.

Example:

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