Namespaces, Naming Conventions, AutoComplete / Intellisence
I assume that you are trying to find some Object-Oriented-apis. I am using .net in my example.
First, try to find a class that may be responsible for the method you are looking for.
Example. If you want to "Create a new directory in the file system", you should know (or learn) that (in dotnet) these classes are in the System.IO namespace:
This namespace contains subtitle spaces such as Compresseion and Classes such as File, Path, Directory, ...
Secondly, you can know NamingConventions. There are common Naming-Prefixes for methods such as Get, Set, Insert, Create. In the documentation for Class Directory, you will find the CreateDirectory method.
If you have an intelligent editor that knows your programming language, and learning classes and name classes is much easier. In the dotnet world, this function is called Autocomplete / Intellisence.
source share