Sha256: 552a3fd990ef3d51ee7be10b4682f551d14c60643532adefad65bd47f3679914
Contents?: true
Size: 473 Bytes
Versions: 7
Compression:
Stored size: 473 Bytes
Contents
module Stamina module Dsl module Automata # # Coerces `arg` to an automaton # def automaton(arg) Automaton.coerce(arg) end # # Computes the synchronous composition of many automata # def compose(*args) automata = args.collect{|a| automaton(a)} Stamina::Automaton::Compose.execute(automata) end end # module Automata include Automata end # module Dsl end # module Stamina
Version data entries
7 entries across 7 versions & 1 rubygems