#pattern-matching
Read more stories on Hashnode
Articles with this tag
Every F# programmer is likely familiar with pattern matching using the match keyword, as illustrated below: match x with | Some 0 -> "Zero" | Some n...