Sha256: 635e2a2b6146df673b1144624548dafb44463a484fe99c806c938b1cc83623ad
Contents?: true
Size: 1.43 KB
Versions: 1
Compression:
Stored size: 1.43 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 # 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
transproc-0.3.0 | lib/transproc/conditional.rb |