ref5<T, A1, A2, A3, A4, A5> method

Parser<T> ref5<T, A1, A2, A3, A4, A5>(
  1. Parser<T> callback(
    1. A1,
    2. A2,
    3. A3,
    4. A4,
    5. A5,
    ),
  2. A1 arg1,
  3. A2 arg2,
  4. A3 arg3,
  5. A4 arg4,
  6. A5 arg5,
)
inherited

Reference to a production callback parametrized with five arguments arg1, arg2, arg3, arg4, and arg5.

Implementation

Parser<T> ref5<T, A1, A2, A3, A4, A5>(
        Parser<T> Function(A1, A2, A3, A4, A5) callback,
        A1 arg1,
        A2 arg2,
        A3 arg3,
        A4 arg4,
        A5 arg5) =>
    reference.ref5<T, A1, A2, A3, A4, A5>(
        callback, arg1, arg2, arg3, arg4, arg5);