3

I learned there're built-in functions which is not documented from this question.

After this ,
I tried looking for something which is usable for me,
then noticed that with ? something*,
I can't find the packages like Optimization without specifying ?Optimization'*.

Is there any way to search all-builtin functions with arbitrary phrase?


user64494
  • 26,149
  • 4
  • 27
  • 56
Xminer
  • 1
  • 7
  • 15

1 Answers1

8
Names["*`*" <> pattern <> "*"]

or

?*`*pattern*

should find symbols containing pattern.

Jason B.
  • 68,381
  • 3
  • 139
  • 286