Given I have a schema for the function get-stock.
(m/-> get-stock [:cat :int] -> [:map [:price float?] [:sym string]])
When I a code below,
(-> (get-stock)
;;; the cursor is here
)
Can any tools show me possible keywords that are :price or :sym at the cursor?
You must log in or # to comment.