module Casing::Controls::Hash

Public Class Methods

example() click to toggle source
# 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