Re: Displaying functions generated for the REPL

2016-07-23 Thread Jason Felice
If they are all in one namespace, you can use `ns-publics` on that namespace ... e.g. `(ns-publics 'user)`. On Sat, Jul 23, 2016 at 5:28 AM, Cecil Westerhof wrote: > For a project I define some extra functions if it is started in the REPL. > I like to know which extra functions there are in the

Displaying functions generated for the REPL

2016-07-23 Thread Cecil Westerhof
For a project I define some extra functions if it is started in the REPL. I like to know which extra functions there are in the REPL, so at the moment I am doing the following: (print (str "Defined REPL functions:\n" "- do-show-schemas\n" "- do-show-table [table]\n"