Converts a list of items of type A to a list of items of type B.
A
B
Future<Iterable<B>> converts(Iterable<A> root) { return Future.wait(root.map(convert)); }