I can type alias to show a list of all the aliases.
But for functions, all I can do is grep my .bash_profile.
.bash_profile
That only gets the ones in that fi
declare -F
will give you the names of all functions
type function_name
will give you the source for a particular function
Assuming bash shell:
typeset -f
will list the functions.
typeset -F
will list just the function names.