Sha256: 6e84f1fca6e923c51553052618c8cb29ff309be37322b097f28578cebe6bafe4
Contents?: true
Size: 1012 Bytes
Versions: 3
Compression:
Stored size: 1012 Bytes
Contents
require 'rumonade/monad' module Rumonade # TODO: Document use of Hash as a Monad module HashExtensions module ClassMethods def unit(value) raise ArgumentError, "argument not a 2-element Array for Hash.unit" unless (value.is_a?(Array) && value.size == 2) Hash[*value] end def empty {} end end module InstanceMethods # Preserve native +map+ and +flatten+ methods for compatibility METHODS_TO_REPLACE_WITH_MONAD = Monad::DEFAULT_METHODS_TO_REPLACE_WITH_MONAD - [:map, :flatten] def bind(lam = nil, &blk) inject(self.class.empty) { |hsh, elt| hsh.merge((lam || blk).call(elt)) } end # @return [Option] a Some containing the value associated with +key+, or None if not present def get(key) Option(self[key]) end end end end Hash.send(:extend, Rumonade::HashExtensions::ClassMethods) Hash.send(:include, Rumonade::HashExtensions::InstanceMethods) Hash.send(:include, Rumonade::Monad)
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rumonade-0.4.2 | lib/rumonade/hash.rb |
rumonade-0.4.1 | lib/rumonade/hash.rb |
rumonade-0.4.0 | lib/rumonade/hash.rb |