1.18 shaping up to be a great release! My only remaining desired features:

* sum types (would be really nice)

* some equivalent of ? in Rust (can live without but would be nice)

After playing with a ton of languages have settled on Go for most projects.

> * sum types (would be really nice)

That seems really difficult to retrofit, and to not really fit the language either.

I've been thinking something like sealed interfaces would fit better: Go already has fallible downcasts (and RTTI which takes the role of discriminant), and type switches can play the role of your `case` statement:

    func do[T any](i option[T]) {
        switch v := i.(type) {
        case T:
            fmt.Printf("Got a %v", v)
        case nothing: // or `nil` could be a (pseudo)-type
            fmt.Printf("was empty!")
        // no default necessary because the check is complete
        }
    }
The only pieces missing are a way to "seal in" a set of types, and add completeness check to type switches for those.

"I've been thinking something like sealed interfaces would fit better:"

You can have "sealed interfaces" today; you put an unexportable method name in the interface. Then no legal external implementation can exist. (Not even if someone "guesses" the method name; the compiler will not consider them to have the same name.)

What you still don't get is completeness checking even so. In theory a linter could do it even without compiler support, I don't know if one exists.

You can use this in Go today to get, oh, say, 1/3rd of the feature of 'sum types' today. But you don't get much of the "sum types" bang for that 1/3rd of the buck. Basically, you can use them, and you don't need to do the fully manual type of thing you need to do in C with unions and tags, you can lean on the interfaces carrying type information around to handle that, but you get no additional compiler or syntax support, nor any sort of pattern matching on them.

go-sumtype[0] has completeness checking for sealed interfaces.

[0] https://github.com/BurntSushi/go-sumtype