(inspect x)
(inspect truncate x)
Return a string description of the value supplied.
May be the a string version of the value itself (e.g. "true")
or it may be a description (e.g. "an instance of Foo").
If truncate is true then return a very terse version of
the inspection.
Source
(defn inspect
"Return a string description of the value supplied.
May be the a string version of the value itself (e.g. \"true\")
or it may be a description (e.g. \"an instance of Foo\").
If truncate is true then return a very terse version of
the inspection."
([x] (inspect* false x))
([truncate x] (inspect* truncate x)))