Sha256: 238507aa2316e20362dca198c0f304076e135d5e10fb634f775bc6da311932ec

Contents?: true

Size: 1.65 KB

Versions: 140

Compression:

Stored size: 1.65 KB

Contents

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 list 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
  #   +nil+ 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, but returns an empty array if argument is +nil+.
  #
  # The second 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

140 entries across 135 versions & 14 rubygems

Version Path
activesupport-4.2.11.3 lib/active_support/core_ext/array/wrap.rb
activesupport-4.2.11.2 lib/active_support/core_ext/array/wrap.rb
cocoapods-dependency-html-0.0.2 vendor/bundle/gems/activesupport-4.2.11.1/lib/active_support/core_ext/array/wrap.rb
cocoapods-dependency-html-0.0.1 vendor/bundle/gems/activesupport-4.2.11.1/lib/active_support/core_ext/array/wrap.rb
activesupport-4.2.11.1 lib/active_support/core_ext/array/wrap.rb
activesupport-4.2.11 lib/active_support/core_ext/array/wrap.rb
activesupport-4.2.10 lib/active_support/core_ext/array/wrap.rb
activesupport-4.2.10.rc1 lib/active_support/core_ext/array/wrap.rb
activesupport-4.2.9 lib/active_support/core_ext/array/wrap.rb
activesupport-4.2.9.rc2 lib/active_support/core_ext/array/wrap.rb
activesupport-4.2.9.rc1 lib/active_support/core_ext/array/wrap.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/activesupport-4.2.8/lib/active_support/core_ext/array/wrap.rb
activesupport-4.2.8 lib/active_support/core_ext/array/wrap.rb
activesupport-4.2.8.rc1 lib/active_support/core_ext/array/wrap.rb
activesupport-4.2.7.1 lib/active_support/core_ext/array/wrap.rb
activesupport-4.2.7 lib/active_support/core_ext/array/wrap.rb
activesupport-4.1.16 lib/active_support/core_ext/array/wrap.rb
activesupport-4.1.16.rc1 lib/active_support/core_ext/array/wrap.rb
activesupport-4.2.7.rc1 lib/active_support/core_ext/array/wrap.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-4.2.6/lib/active_support/core_ext/array/wrap.rb