Sha256: fa1b1dbaa4b1317acefac9c6263fd394884b0718db90c50153f2599f27a624f3
Contents?: true
Size: 1.77 KB
Versions: 5
Compression:
Stored size: 1.77 KB
Contents
module Transproc # Conditional transformation functions # # @example # require 'transproc/conditional' # # include Transproc::Helper # # fn = t(:guard, -> s { s.is_a?(::String) }, -> s { s.to_sym }) # # [fn[2], fn['Jane']] # # => [2, :Jane] # # @api public module Conditional extend Registry # Negates the result of transformation # # @example # fn = Conditional[:not, -> value { value.is_a? ::String }] # fn[:foo] # => true # fn["foo"] # => false # # @param [Object] value # @param [Proc] fn # # @return [Boolean] # # @api public def self.not(value, fn) !fn[value] end # Apply the transformation function to subject if the predicate returns true, or return un-modified # # @example # [2, 'Jane'].map do |subject| # Transproc(:guard, -> s { s.is_a?(::String) }, -> s { s.to_sym })[subject] # end # # => [2, :Jane] # # @param [Mixed] # # @return [Mixed] # # @api public def self.guard(value, predicate, fn) predicate[value] ? fn[value] : value end # Calls a function when type-check passes # # @example # fn = Transproc(:is, Array, -> arr { arr.map(&:upcase) }) # fn.call(['a', 'b', 'c']) # => ['A', 'B', 'C'] # # fn = Transproc(:is, Array, -> arr { arr.map(&:upcase) }) # fn.call('foo') # => "foo" # # @param [Object] # @param [Class] # @param [Proc] # # @return [Object] # # @api public def self.is(value, type, fn) guard(value, -> v { v.is_a?(type) }, fn) end # @deprecated Register methods globally (methods - Registry.methods - Registry.instance_methods) .each { |name| Transproc.register name, t(name) } end end
Version data entries
5 entries across 5 versions & 1 rubygems