Add more docstrings

This commit is contained in:
Michiel Borkent 2020-03-06 22:33:58 +01:00
parent 5723206ca2
commit 8955431ee7

View file

@ -18,16 +18,15 @@
(def core-extras
{'file-seq (copy-core-var file-seq)
'agent agent
'instance? instance? ;; TODO: move to sci
'send send
'send-off send-off
'promise promise
'deliver deliver
'agent (copy-core-var agent)
'send (copy-core-var send)
'send-off (copy-core-var send-off)
'promise (copy-core-var promise)
'deliver (copy-core-var deliver)
'locking (with-meta locking* {:sci/macro true})
'shutdown-agents shutdown-agents
'shutdown-agents (copy-core-var shutdown-agents)
'slurp (copy-core-var slurp)
'spit (copy-core-var spit)
'time (with-meta time* {:sci/macro true})
'Throwable->map Throwable->map
'compare-and-set! compare-and-set!})
'Throwable->map (copy-core-var Throwable->map)
'compare-and-set! (copy-core-var compare-and-set!)})