class Hash

Public Instance Methods

-(hash2) click to toggle source
# File lib/everyday-cli-utils/maputil.rb, line 66
def -(hash2)
  EverydayCliUtils::MapUtil.hash_diff(self, hash2)
end
clone() click to toggle source
# File lib/everyday-cli-utils/maputil.rb, line 54
def clone
  EverydayCliUtils::MapUtil.clone_hash(self)
end
expand() click to toggle source
# File lib/everyday-cli-utils/maputil.rb, line 50
def expand
  EverydayCliUtils::MapUtil.expand(self)
end
extend_hash(base_hash) click to toggle source
# File lib/everyday-cli-utils/maputil.rb, line 62
def extend_hash(base_hash)
  EverydayCliUtils::MapUtil.extend_hash(base_hash, self)
end
hashmap(&block) click to toggle source
# File lib/everyday-cli-utils/maputil.rb, line 58
def hashmap(&block)
  EverydayCliUtils::MapUtil.hashmap(self, &block);
end