is there a good way to spec out just some of the arguments in s/fdef's :args? like :args (s/cat :first-param (constantly true) :second-param int?)?
s/fdef
:args
:args (s/cat :first-param (constantly true) :second-param int?)
any?
thanks!