apropos s -- displays a list of global symbols which match the pattern specified by the string s.
The pattern may contain '*'s as wild card characters.
i1 : apropos "scan" |
Code:
-- code for apropos: -- ../m2/document.m2:426-428 apropos = (pattern) -> ( mat := "*" | toString pattern | "*"; sort select( keys symbolTable(), i -> match(i,mat)))