public static AsyncMaybe <T> Where <T>(
     this AsyncMaybe <T> source,
     [NotNull] Func <T, bool> predicate
     ) => source.Filter(predicate);