The function print-methods
is intended to be used inside a REPL. Just copy and paste it to your REPL and enjoy:
main=> ; paste print-methods
main=> (print-methods 1)
class java.lang.Long
-----------
bitCount(long) -> int
byteValue() -> byte
compare(long, long) -> int
;...
@puredanger Any reason for making
:return-type
a keyword instead of a symbol in the:keys
clause?