MatchQ
MatchQ(expr, form)tests whether
exprmatchesform.
Examples
>> MatchQ(123, _Integer)True
>> MatchQ(123, _Real)False
>> MatchQ(_Integer)[123]TrueImplementation status
- ✅ - full supported
MatchQ(expr, form)tests whether
exprmatchesform.
>> MatchQ(123, _Integer)True
>> MatchQ(123, _Real)False
>> MatchQ(_Integer)[123]True