|
|
|
|
|
by greenpeas
1146 days ago
|
|
FIY, you can write `data4.all?(Integer)` because `all?` can take a pattern instead of a block, and it uses the === (just like case...when) I just learned this myself from another comment in this thread. UPD: why do you write `obj.<=(16)` instead of `obj <= 16`? is this a performance thing or a matter of style or something else? |
|