method
move_string
rails latest stable - Class:
ActionDispatch::Journey::GTG::TransitionTable
move_string(t, a)private
No documentation available.
# File actionpack/lib/action_dispatch/journey/gtg/transition_table.rb, line 153
def move_string(t, a)
return [] if t.empty?
t.map do |s|
if states = @string_states[s]
states[a]
end
end.compact
end