Module: Casing::Controls::Hash

Defined in:
lib/casing/controls/hash.rb

Defined Under Namespace

Modules: Nested, String, Symbol

Class Method Summary collapse

Class Method Details

.exampleObject



4
5
6
7
8
9
10
11
12
13
# File 'lib/casing/controls/hash.rb', line 4

def self.example
  hash = {}

  hash.merge! Symbol.example
  hash.merge! String.example
  hash.merge! Nested::Hash.example
  hash.merge! Nested::Array.example

  hash
end