# File lib/journey/nfa/transition_table.rb, line 136
      def transitions
        @table.map { |to, hash|
          hash.map { |from, sym| [from, sym, to] }
        }.flatten(1)
      end