Sha256: 73ec65146ce594dfd69a3a4680d3872dbae492fa8b2861080e30d62c670278bd

Contents?: true

Size: 993 Bytes

Versions: 15

Compression:

Stored size: 993 Bytes

Contents

# frozen_string_literal: true

require_relative "array/errors"

require_relative "array/contain_exactly"
require_relative "array/drop_while"
require_relative "array/find_last"
require_relative "array/find_yield"
require_relative "array/keep_after"
require_relative "array/merge"
require_relative "array/rjust"
require_relative "array/wrap"

module ConvenientService
  module Utils
    module Array
      class << self
        def contain_exactly?(...)
          ContainExactly.call(...)
        end

        def drop_while(...)
          DropWhile.call(...)
        end

        def find_last(...)
          FindLast.call(...)
        end

        def find_yield(...)
          FindYield.call(...)
        end

        def keep_after(...)
          KeepAfter.call(...)
        end

        def merge(...)
          Merge.call(...)
        end

        def rjust(...)
          Rjust.call(...)
        end

        def wrap(...)
          Wrap.call(...)
        end
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
convenient_service-0.12.0 lib/convenient_service/utils/array.rb
convenient_service-0.11.0 lib/convenient_service/utils/array.rb
convenient_service-0.10.1 lib/convenient_service/utils/array.rb
convenient_service-0.10.0 lib/convenient_service/utils/array.rb
convenient_service-0.9.0 lib/convenient_service/utils/array.rb
convenient_service-0.8.0 lib/convenient_service/utils/array.rb
convenient_service-0.7.0 lib/convenient_service/utils/array.rb
convenient_service-0.6.0 lib/convenient_service/utils/array.rb
convenient_service-0.5.0 lib/convenient_service/utils/array.rb
convenient_service-0.4.0 lib/convenient_service/utils/array.rb
convenient_service-0.3.1 lib/convenient_service/utils/array.rb
convenient_service-0.3.0 lib/convenient_service/utils/array.rb
convenient_service-0.2.1 lib/convenient_service/utils/array.rb
convenient_service-0.2.0 lib/convenient_service/utils/array.rb
convenient_service-0.1.0 lib/convenient_service/utils/array.rb