When programing emacs (or common) lisp, how to discover (standard) function names (using emacs and working offline)?
Example: Let's say you want to shift bits of an integer, but you don't now the name of the function, which can do this (hint: the name is ash
, but you don't know, yet).
apropos
isn't helping you, because it does not list ash
when asking for shift
.