Slide 84
Slide 84 text
In summary then
Concrete things you can actually do
• try converting “case when” to “case in” to get some easy benefits
• look for opportunities to match the entire shapes of arrays and hashes instead
of checking their elements individually
• once you’re comfortable, dip a toe into more advanced features (guards,
variable pinning, #deconstruct & #deconstruct_keys, find patterns) to
get more power out of pattern matching
• write a conference talk or a blog post and spread the word