module Aws::Templates::Utils::Recursive

Recusrsive refinement

The refinement adds to_recursive method to all standard classes which support recursive concept.

Public Instance Methods

to_recursive() click to toggle source
# File lib/aws/templates/utils/recursive.rb, line 15
def to_recursive
  self
end
unknown() click to toggle source

Hash implements resursive concept

# File lib/aws/templates/utils/recursive.rb, line 14
refine ::Hash do
  def to_recursive
    self
  end
end