module Casing::Controls::Hash::Nested::Hash

Public Class Methods

example() click to toggle source
# File lib/casing/controls/hash.rb, line 37
def self.example
  hash = {}
  hash.merge! Symbol.example
  hash.merge! String.example

  { :nested_hash => hash }
end