Is there a way to create a Mathematica pattern which matches expressions whose heads may be arbitrarily deep, i.e. something like f[___][___][___]...?
|
|
|||
The suggested solutionThere seems to be no built-in construct to pattern-test nested heads automatically. We can achieve the goal by writing a function which would, for any given (sub)expression of the form
Here is how it can be used (I will use the same set of tests as @Sasha):
The pattern syntaxIf you prefer to use the syntax suggested by @Sasha, that version would look like
Further explanations and commentsHow it worksHere are some hints for the logic that lead to this solution, and how it works. The solution will be most concise and efficient if we manage to leverage some of the built-in expression-traversal functions. Some that come to mind are Avoiding the evaluation leaksAnother comment is on evaluation. You can see that
Here, we see what we'd expect - even though
And now,
The latter behavior is unsatisfactory generally. The whole code-is-data paradigm, so useful in meta - programming, is very powerful in Mathematica because you can use rules to destructure code. Possible (unwanted) evaluation during the pattern- matching would greatly impair it. The whole problem is in the sub-parts. Wrapping Comment on symbolic headsThe last comment here (mostly about definitions) is that the |
|||||||||
|
|
How about the following:
|
||||
|
|
|
A recursive matching strategy could be used here:
Usage:
Update At Leonid's suggestion,
|
|||||||||||||
|
|
WReach's answer made me reexamine a recursive definition, which I tried yesterday but gave up on. I realize now that what I had actually works, it just throws an error. It is a toy compared to Leonid's fine method, but I have a fondness for terse code, so I post it here for interest or amusement. Make sure you do not have
Or even:
|
|||||||||||||||
|
Derivative[_][_][_], and it is annoying every time. – rcollyer May 11 '11 at 11:35