class ActionDispatch::Routing::Mapper::Scope

def each

Experimental RBS support (using type sampling data from the type_fusion project).

def each: () -> nil

This signature was generated using 9 samples from 1 application.

def each
  node = self
  until node.equal? NULL
    yield node
    node = node.parent
  end
end