Skip to content

Codec17KVOps<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q>

extensionCodec17KVOps<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q>onRecord

Provides a product operation on a 17-tuple of KeyValueCodecs.

Methods

product() extension

Codec<R>product<R>(RFunction(A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,)apply,RecordFunction(R)tupled,);

Available on Record, provided by the Codec17KVOps<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q> extension

Implementation
dart
Codec<R> product<R>(
  Function17<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R> apply,
  Function1<R, (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q)> tupled,
) => Codec.product17(
  $1,
  $2,
  $3,
  $4,
  $5,
  $6,
  $7,
  $8,
  $9,
  $10,
  $11,
  $12,
  $13,
  $14,
  $15,
  $16,
  $17,
  apply,
  tupled,
);