async aFlatMap<R>(cb: Methods.CallBackFlatMap<T, R>): Promise<AsyncArray<R>> {
    return new AsyncArray(...(await Methods.aFlatMap<T, R>(this, cb)));
  }