ella library

Typedefs

AsyncConsumerVoidFunction<T> = Future<void> Function(T arg1)
BinaryConsumerSupplierFunction<T1, T2, L> = L Function(T1 arg1, T2 arg2)
BinaryConsumerVoidFunction<T1, T2> = void Function(T1 arg1, T2 arg2)
ComparatorFunction<T> = int Function(T a, T b)
ConsumerSupplierFunction<T, L> = L Function(T arg1)
ConsumerVoidFunction<T> = void Function(T arg1)
QuaternaryConsumerSupplierFunction<T1, T2, T3, T4, L> = L Function(T1 arg1, T2 arg2, T3 arg3, T4 arg4)
QuinaryConsumerSupplierFunction<T1, T2, T3, T4, T5, L> = L Function(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5)
SupplierFunction<T> = T Function()
TernaryConsumerSupplierFunction<T1, T2, T3, L> = L Function(T1 arg1, T2 arg2, T3 arg3)
VoidFunction = void Function()
@fileoverview Exports common constants, typedefs & function binding routines. Originally inspired by goog.bind.