(classify-container [tag props & children] classify-fn)classifies a container
classifies a container
(emit-container {:keys [title props children]} grammar mopts)emits a container string
emits a container string
(emit-node {:keys [type value] :as node} grammar mopts)emits either container or value string
emits either container or value string
(emit-qml form grammar mopts)emits a qml string
(l/with:emit (qml/emit-qml [:qml/Window #{[:a 1 :b [:qml/Item]]} '(fn hello [] (+ 1 2))] js/+grammar+ {})) (std.string/| "Window {" " a: 1" " b: Item {" " " " }" " hello(){" " 1 + 2;" " }" "}")
emits a qml string
(l/with:emit
(qml/emit-qml [:qml/Window #{[:a 1 :b [:qml/Item]]}
'(fn hello [] (+ 1 2))]
js/+grammar+
{}))
(std.string/|
"Window {"
" a: 1"
" b: Item {"
" "
" }"
" hello(){"
" 1 + 2;"
" }"
"}")(emit-value {:keys [value]} grammar mopts)emits a value string
emits a value string
(qml-container? item)checks if item is a qml container
checks if item is a qml container
(qml-props? item)checks if data is a qml prop
checks if data is a qml prop
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |