Example #1
0
 public static Promise <T> Race <T>(params Promise <T>[] promises)
 {
     return(Promise <T> .Race(promises));
 }
Example #2
0
 public static Promise <T[]> All <T>(params Promise <T>[] promises)
 {
     return(Promise <T> .All(promises));
 }