Sha256: cf7a751fc470ce68a39edc2d608f63ee5c5b028003f530c5315f6338e299c8b7

Contents?: true

Size: 508 Bytes

Versions: 5

Compression:

Stored size: 508 Bytes

Contents

module Monolens
  module Array
    extend Namespace

    def compact(options, registry)
      Compact.new(options, registry)
    end
    module_function :compact

    def join(options, registry)
      Join.new(options, registry)
    end
    module_function :join

    def map(options, registry)
      Map.new(options, registry)
    end
    module_function :map

    Monolens.define_namespace 'array', self
  end
end
require_relative 'array/compact'
require_relative 'array/join'
require_relative 'array/map'

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
monolens-0.6.4 lib/monolens/stdlib/array.rb
monolens-0.6.3 lib/monolens/stdlib/array.rb
monolens-0.6.2 lib/monolens/stdlib/array.rb
monolens-0.6.1 lib/monolens/stdlib/array.rb
monolens-0.6.0 lib/monolens/stdlib/array.rb