Project

General

Profile

ActionsLike0

Bug #13855

closed

Hash#compact! returns nil if the hash is empty

Added by elandesign (Paul Smith) over 7 years ago. Updated over 7 years ago.

Status:
Closed
Target version:
-
ruby -v:
ruby 2.4.1p111 (2017-03-22 revision 58053) [x86_64-darwin16]
[ruby-core:82591]

Description

This behaviour feels like a bug to me.

From the documentation (with my emphasis):

compact! → hsh
Removes all nil values from the hash. Returns the hash.

However if the hash contains no keys, the method returns nil.

irb(main):001:0> {}.compact!
=> nil

# For Comparison
irb(main):002:0> { foo: nil }.compact!
=> {}
irb(main):003:0> {}.compact
=> {}
irb(main):004:0> { foo: nil }.compact
=> {}

Updated by duerst (Martin Dürst) over 7 years ago

  • Assignee set to nobu (Nobuyoshi Nakada)
#5

Updated by nobu (Nobuyoshi Nakada) over 7 years ago

  • Status changed from Open to Closed
ActionsLike0

Also available in: Atom PDF