crystal-lang / crystal

The Crystal Programming Language
https://crystal-lang.org
Apache License 2.0
19.43k stars 1.62k forks source link

[Feature Request] Chaining methods to "when" statements #6396

Open bararchy opened 6 years ago

bararchy commented 6 years ago

Basically allow this:

int = 8
case int
when .size > 2
  # do stuff
end
straight-shoota commented 6 years ago

when .size.> 2 would be the first step ;)