FunctionSpaceAssertions(R, F)ΒΆ
expr.spad line 964 [edit on github]
R: Comparable
F: FunctionSpace R
Attaching assertions to symbols for pattern matching; Date Created: 21 Mar 1989
- constant: F -> F
constant(x)
tells the pattern matcher thatx
should match only the symbol'x
and no other quantity. Error: ifx
is not a symbol.
- multiple: F -> F
multiple(x)
tells the pattern matcher thatx
should preferably match a multi-term quantity in a sum or product. For matching on lists, multiple(x
) tells the pattern matcher thatx
should match a list instead of an element of a list. Error: ifx
is not a symbol.
- optional: F -> F
optional(x)
tells the pattern matcher thatx
can match an identity (0 in a sum, 1 in a product or exponentiation). Error: ifx
is not a symbol.