Skip to content

Commit

Permalink
[Change] Improve tools ns docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Jun 23, 2022
1 parent f576c70 commit 53156b1
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions src/taoensso/nippy/tools.clj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
(defn wrap-for-freezing
"Ensures that given arg (any freezable data type) is wrapped so that
(tools/freeze <wrapped-arg>) will serialize as
(nippy/freeze <unwrapped-arg> <opts>)."
(nippy/freeze <unwrapped-arg> <opts>).
See also `nippy.tools/freeze`, `nippy.tools/thaw`."
([x ] (wrap-for-freezing x nil))
([x opts]
(if (instance? WrappedForFreezing x)
Expand All @@ -25,7 +27,13 @@
(WrappedForFreezing. x opts))))

(defn freeze
"Like `nippy/freeze` but merges opts from *freeze-opts*, `wrap-for-freezing`."
"Like `nippy/freeze` but uses as opts the following merged in order of
ascending preference:
- Optional `default-opts` arg given to this fn (default nil).
- Optional `*freeze-opts*` dynamic value (default nil).
- Optional opts provided to `wrap-for-freezing` (default nil)."

([x ] (freeze x nil))
([x default-opts]
(let [default-opts (get default-opts :default-opts default-opts) ; For back compatibility
Expand All @@ -37,7 +45,12 @@
(nippy/freeze x merged-opts)))))

(defn thaw
"Like `nippy/thaw` but merges opts from `*thaw-opts*`."
"Like `nippy/thaw` but uses as opts the following merged in order of
ascending preference:
- Optional `default-opts` arg given to this fn (default nil).
- Optional `*thaw-opts*` dynamic value (default nil)."

([ba ] (thaw ba nil))
([ba default-opts]
(let [default-opts (get default-opts :default-opts default-opts) ; For back compatibility
Expand Down

0 comments on commit 53156b1

Please sign in to comment.