Sha256: 11add2e4e8debd2783b204e4e375e2f56c1aed5d06a49d6c0849ec638d516084

Contents?: true

Size: 1.79 KB

Versions: 226

Compression:

Stored size: 1.79 KB

Contents

# frozen_string_literal: true

class Array
  # Wraps its argument in an array unless it is already an array (or array-like).
  #
  # Specifically:
  #
  # * If the argument is +nil+ an empty array is returned.
  # * Otherwise, if the argument responds to +to_ary+ it is invoked, and its result returned.
  # * Otherwise, returns an array with the argument as its single element.
  #
  #     Array.wrap(nil)       # => []
  #     Array.wrap([1, 2, 3]) # => [1, 2, 3]
  #     Array.wrap(0)         # => [0]
  #
  # This method is similar in purpose to <tt>Kernel#Array</tt>, but there are some differences:
  #
  # * If the argument responds to +to_ary+ the method is invoked. <tt>Kernel#Array</tt>
  #   moves on to try +to_a+ if the returned value is +nil+, but <tt>Array.wrap</tt> returns
  #   an array with the argument as its single element right away.
  # * If the returned value from +to_ary+ is neither +nil+ nor an +Array+ object, <tt>Kernel#Array</tt>
  #   raises an exception, while <tt>Array.wrap</tt> does not, it just returns the value.
  # * It does not call +to_a+ on the argument, if the argument does not respond to +to_ary+
  #   it returns an array with the argument as its single element.
  #
  # The last point is easily explained with some enumerables:
  #
  #   Array(foo: :bar)      # => [[:foo, :bar]]
  #   Array.wrap(foo: :bar) # => [{:foo=>:bar}]
  #
  # There's also a related idiom that uses the splat operator:
  #
  #   [*object]
  #
  # which returns <tt>[]</tt> for +nil+, but calls to <tt>Array(object)</tt> otherwise.
  #
  # The differences with <tt>Kernel#Array</tt> explained above
  # apply to the rest of <tt>object</tt>s.
  def self.wrap(object)
    if object.nil?
      []
    elsif object.respond_to?(:to_ary)
      object.to_ary || [object]
    else
      [object]
    end
  end
end

Version data entries

226 entries across 211 versions & 26 rubygems

Version Path
activesupport-6.0.3.3 lib/active_support/core_ext/array/wrap.rb
activesupport-6.0.3.2 lib/active_support/core_ext/array/wrap.rb
activesupport-6.0.3.1 lib/active_support/core_ext/array/wrap.rb
activesupport-5.2.4.3 lib/active_support/core_ext/array/wrap.rb
activesupport-6.0.3 lib/active_support/core_ext/array/wrap.rb
activesupport-6.0.3.rc1 lib/active_support/core_ext/array/wrap.rb
activesupport-6.0.2.2 lib/active_support/core_ext/array/wrap.rb
activesupport-5.2.4.2 lib/active_support/core_ext/array/wrap.rb
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/array/wrap.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/core_ext/array/wrap.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/activesupport-5.2.4.1/lib/active_support/core_ext/array/wrap.rb
activesupport-6.0.2.1 lib/active_support/core_ext/array/wrap.rb
activesupport-5.2.4.1 lib/active_support/core_ext/array/wrap.rb
activesupport-6.0.2 lib/active_support/core_ext/array/wrap.rb
activesupport-6.0.2.rc2 lib/active_support/core_ext/array/wrap.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array/wrap.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/core_ext/array/wrap.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/activesupport-6.0.0/lib/active_support/core_ext/array/wrap.rb
activesupport-5.2.4 lib/active_support/core_ext/array/wrap.rb
activesupport-6.0.2.rc1 lib/active_support/core_ext/array/wrap.rb