rydlaw (Waldyr de Souza)
- Login: rydlaw
- Registered on: 02/25/2016
- Last sign in: 03/30/2021
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 1 | 0 | 1 |
Activity
02/25/2016
-
04:30 PM Ruby Feature #12110 (Open): Create a method to avoid vacuous truth?
- I often find myself running into unexpected results when using `#all?` for example
```ruby
[].all? { |e| false } # => true
```
Even though it's logically correct could we have a method that express the following?
```ruby
foo....