Day #40

Pattern Matching With Associated Values in Enums

Yesterday’s feature gets a little bit more advanced.

You can actually do matching with it!

1
2
3
4
5
6
7
8
enum MyEnum {
    case multiple(_ firstValue: String, _ secondValue: Int)
}

if case let MyEnum.multiple(_, theSecondValue) = .multiple("anything", 10) {
    // True no matter what `firstValue` is
    print(theSecondValue)
}

Code credit: Dustin @ Strega’s Gate

Originally published 09/25/2021 https://pittcsc.org/, republished 09/09/2022.

Licensed under CC BY-NC-SA 4.0
Last updated on Sep 25, 2021 00:00 UTC
Built with Hugo
Theme Stack designed by Jimmy