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