需要帮助避免在条件或模式测试中列出列表

发布于 2024-10-29 03:58:02 字数 43 浏览 0 评论 0原文

我们如何使用条件或模式测试使我们的函数接受除列表之外的任何符号作为输入?

How can we use a conditional or pattern test to make our function accept any symbols as input except for lists?

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

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

发布评论

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

评论(1

冰葑 2024-11-05 03:58:02

使用 Except

f[x : Except[_List]] := doSomethingTo[x]

expr /. x : Except[_List] :> doSomethingElseTo[x]

您可以将其与 替代(中缀运算符| )排除几件事:

g[x : Except[_List | _Rational]] := etc[x]

编辑:也合并评论中的答案:

如果 expr 是一个列表(有head List) 和 False 否则。 MatchQ[expr, _List]Head[expr]===List 是完成相同任务的等效方法。

Use Except:

f[x : Except[_List]] := doSomethingTo[x]

expr /. x : Except[_List] :> doSomethingElseTo[x]

You can combine that with Alternatives (infix operator |) to exclude several things:

g[x : Except[_List | _Rational]] := etc[x]

Edit: Consolidating answers from the comments too:

ListQ[expr] will return True if expr is a list (has head List) and False otherwise. MatchQ[expr, _List] and Head[expr]===List are equivalent ways to accomplish the same thing.

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