(map->CondBr m__7585__auto__)
Factory function for class clojure.core.async.impl.ioc_macros.CondBr, taking a map of keywords to field values.
Source
(defrecord CondBr [test then-block else-block]
IInstruction
(reads-from [this] [test])
(writes-to [this] [])
(block-references [this] [then-block else-block])
ITerminator
(terminate-block [this state-sym _]
`(do (if ~test
(aset-all! ~state-sym
~STATE-IDX ~then-block)
(aset-all! ~state-sym
~STATE-IDX ~else-block))
:recur)))