mirror of
https://github.com/gosticks/brew.git
synced 2026-08-27 12:00:18 +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)).