class SyntaxTree::Params

def empty?

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

def empty?: () -> untyped

This signature was generated using 1 sample from 1 application.

it's missing.
declared. This logic accesses every kind of parameter and determines if
to know if they are "empty", which means not having any parameters
Params nodes are the most complicated in the tree. Occasionally you want
def empty?
  requireds.empty? && optionals.empty? && !rest && posts.empty? &&
    keywords.empty? && !keyword_rest && !block
end