So what Options do I have?
Option types
Option type documentation:
Same names, a bit different API
Scala
In Scala the variants are called: None and Some which are final case subclasses of Option. I’ve noticed the subclassing has the nice property of helping in IDE to discover the variants (which is also the case, for example, for Try subclasses.
Rust
In Rust, the variants are also conveniently named Some and None.








