Sha256: 96612c0782afac124c5bc598a7c6826514dfe4a2500e5864164e118a63bbb0a5
Contents?: true
Size: 364 Bytes
Versions: 20
Compression:
Stored size: 364 Bytes
Contents
# frozen_string_literal: true # module Mutils module Mutils module Lib # ResultHash: Store result using this class. class ResultHash def initialize self._hash = {} end def []=(key, value) _hash[key] = value end def hash _hash end private attr_accessor :_hash end end end
Version data entries
20 entries across 20 versions & 1 rubygems