class Roda::RodaPlugins::TypecastParams::Params

def self.nest(obj, nesting)

external code.
array. Designed for internal use, should not be called by
+obj+ should be an array or hash, and +nesting+ should be an
Create a new instance with the given object and nesting level.
def self.nest(obj, nesting)
  v = allocate
  v.instance_variable_set(:@nesting, nesting)
  v.send(:initialize, obj)
  v
end