Returns true if the Option is a Some.
true
expect(isSome(some()), true); expect(isSome(none()), false);
bool isSome<T>(Option<T> option) => option._isSome;