isSome method

bool isSome()

Returns true if the option is a Some value.

Implementation

bool isSome() {
  return this != null;
}