Skip to main content

..

macrov1.7

cljs.core/..

Available in:BBCLJCLJS
(.. [x form] [x form & more])
form => fieldName-symbol or (instanceMethodName-symbol args*) Expands into a member access (.) of the first member on the first argument, followed by the next member on the result, etc. For instance: (.. System (getProperties) (get "os.name")) expands to: (. (. System (getProperties)) (get "os.name")) but is easier to write, read, and understand.

No examples yet. Be the first to add one!