Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 235 Bytes

notes.md

File metadata and controls

8 lines (6 loc) · 235 Bytes

if let = value {} If you care about matching one pattern, and continue

let = value else {}; Same but when you return/panic otherwise

match value { patterns } When you have branches that depend on pattern (edited)