Returns the contained Some value if Some, otherwise throws a Panic.
T expect(String msg) { return v == null ? throw Panic("Called `expect` on a value that was `None`. $msg") : v!; }