You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: convex-core/src/main/cvx/convex/core/metadata.cvx
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -352,7 +352,7 @@
352
352
:return Any}]}}
353
353
354
354
callable?
355
-
{:doc {:description "Returns true if the target is callable. If symbol is provided, also checks that this symbol references a callable function in the specified account. See `call`."
355
+
{:doc {:description "Returns true if the target can be called. If symbol is provided, checks that this symbol references a callable function in the specified account. See `call`."
356
356
:errors {:CAST "If the symbol argument is not a Symbol."}
{:doc {:description "Returns `true` if and only if the argument is a collection: List, Map, Set, or Vector. Returns false otherwise."
377
+
{:doc {:description "Tests if the argument is a data struture."
378
378
:examples [{:code "(coll? [1 2 3])"}]
379
379
:signature [{:params [x]
380
380
:return Boolean}]}}
381
381
382
382
cond
383
-
{:doc {:description ["Performs conditional tests on successive pairs of `test` -> `result`, returning the `result` for the first `test` that succeeds."
384
-
"Performs short-circuit evaluation: result expressions that are not used and any test expressions after the first success will not be executed."
385
-
"In the case that no test succeeds, a single aditional argument may be added as a fallback value. If no fallback value is available, nil will be returned."]
383
+
{:doc {:description ["Performs conditional tests on successive (test, result) pairs, computing the result for the first test that succeeds."
384
+
"Result expressions that are not used and any test expressions after the first success will not be executed."
385
+
"If no test succeeds, a final expression may be added as a fallback. If no fallback value is available, nil will be returned."]
0 commit comments