class Mutils::Lib::ResultHash

ResultHash: Store result using this class.

Attributes

_hash[RW]

Public Class Methods

new() click to toggle source
# File lib/mutils/lib/result_hash.rb, line 8
def initialize
  self._hash = {}
end

Public Instance Methods

[]=(key, value) click to toggle source
# File lib/mutils/lib/result_hash.rb, line 12
def []=(key, value)
  _hash[key] = value
end
hash() click to toggle source
# File lib/mutils/lib/result_hash.rb, line 16
def hash
  _hash
end