Skip to content

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

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

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

Methods

product() extension

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

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

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