expect method

  1. @override
T expect(
  1. String msg
)
override

Returns the contained Some value if Some, otherwise throws a Panic.

Implementation

@override
T expect(String msg) {
  return v;
}