isSome<T> static method

bool isSome<T>(
  1. Maybe<T> maybe
)

Implementation

static bool isSome<T>(Maybe<T> maybe) => !isNothing(maybe);