示例#1
0
 /**
  * combines the current promise with <code>another</code> promise using `or`
  *
  * @param another
  */
 public <B> Promise<Either<A, B>> or(Promise<B> another) {
   return FPromiseHelper.or(this, another);
 }