method

move_string

move_string(t, a)
private

No documentation available.

# File actionpack/lib/action_dispatch/journey/gtg/transition_table.rb, line 155
          def move_string(t, a)
            return [] if t.empty?

            t.map do |s|
              if states = @string_states[s]
                states[a]
              end
            end.compact
          end