mirror of
https://github.com/gosticks/brew.git
synced 2026-08-23 18:10:22 +00:00
`any?` is not the opposite of `empty?`. Besides the case that `[false, nil].any?` will return false, `any?`(O(n)) has much worse performance than `empty?`(O(1)).