(map->Return m__7585__auto__)
Factory function for class clojure.core.async.impl.ioc_macros.Return, taking a map of keywords to field values.
Source
(defrecord Return [value]
IInstruction
(reads-from [this] [value])
(writes-to [this] [])
(block-references [this] [])
ITerminator
(terminator-code [this] :Return)
(terminate-block [this state-sym custom-terminators]
(if-let [f (get custom-terminators (terminator-code this))]
`(~f ~state-sym ~value)
`(do (aset-all! ~state-sym
~VALUE-IDX ~value
~STATE-IDX ::finished)
nil))))