asis library
Adds a couple of useful features to Iterable, List and Response
, and
extends the capabilities of the Future<Iterable>, Future<List> and
Future<Response> to handle the data flow in the same Future chain.
Extensions
-
FutureIterable
on Future<
Iterable< E> > - Future iterable extension maps the native Iterable properties and methods to the result of a Future that yields an Iterable, in addition with a couple of useful return types and methods.
-
FutureList
on Future<
List< E> > - Future list extension maps the native List properties and methods to the result of a Future that yields a List, in addition with a couple of useful return types and methods.
-
FutureResponse
on Future<
Response> -
Future response extension maps the ResponseExtension methods to the result
of a Future that yields a
Response
. -
IterableExtension
on Iterable<
E> - Iterable extension extends the functionality of the native Iterable type by adding a couple of useful methods.
-
ListExtension
on List<
E> - List extension extends the functionality of the native List type by adding a couple of useful methods.
- ResponseExtension on Response
-
Response extension extends the functionality of the
Response
type by adding a couple of useful methods.