ref4<T, A1, A2, A3, A4> method
Parser<T>
ref4<T, A1, A2, A3, A4>(
- Parser<
T> callback(- A1,
- A2,
- A3,
- A4,
- A1 arg1,
- A2 arg2,
- A3 arg3,
- A4 arg4,
inherited
Reference to a production callback parametrized with four arguments
arg1, arg2, arg3, and arg4.
Implementation
Parser<T> ref4<T, A1, A2, A3, A4>(Parser<T> Function(A1, A2, A3, A4) callback,
A1 arg1, A2 arg2, A3 arg3, A4 arg4) =>
reference.ref4<T, A1, A2, A3, A4>(callback, arg1, arg2, arg3, arg4);