asyncSafelyWithoutExceptions

inline fun <T> CoroutineScope.asyncSafelyWithoutExceptions(    context: CoroutineContext = EmptyCoroutineContext,     start: CoroutineStart = CoroutineStart.DEFAULT,     noinline onException: ExceptionHandler<T?> = defaultSafelyWithoutExceptionHandlerWithNull,     noinline block: suspend CoroutineScope.() -> T): Deferred<T?>