Appearance
Race multiple futurables.
Futurable.race<T>(values: Iterable<T>): Futurable<T>
const winner = await Futurable.race([ Futurable.fetch('/api/fast'), Futurable.sleep(5000).then(() => { throw new Error('Timeout') }) ]);