class ActionDispatch::Request::Utils::NoNilParamEncoder

def self.handle_array(params)

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

def self.handle_array: (Array[String] params) -> untyped

This signature was generated using 4 samples from 1 application.

:nodoc:
Remove nils from the params hash.
def self.handle_array(params)
  list = super
  list.compact!
  list
end