Fork me on GitHub
#core-typed
<
2023-01-07
>
zy C15:01:31

Is there any way to just type check one or more fn? check-ns will check all fn&var under this ns, but my project hasn’t used typed-clojure before, and all fns don’t have annotation. I want to add type-check gradually

zy C15:01:57

for example:

(def f [x y] (call-other-fn x y))
(t/cfn f) ;; t/cfn is a hypothetical api, t/cfn type-check this fn