ref2<T, A1, A2> method
Parser<T>
ref2<T, A1, A2>(
- Parser<
T> callback(- A1,
- A2
- A1 arg1,
- A2 arg2
inherited
Reference to a production callback
parametrized with two arguments
arg1
and arg2
.
Implementation
Parser<T> ref2<T, A1, A2>(
Parser<T> Function(A1, A2) callback, A1 arg1, A2 arg2) =>
reference.ref2<T, A1, A2>(callback, arg1, arg2);