Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lucasmeijer/e7e7c6ae10ef78adaae9b505ca615470 to your computer and use it in GitHub Desktop.
Save lucasmeijer/e7e7c6ae10ef78adaae9b505ca615470 to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
namespace Unity.Entities.UniversalDelegates
{
public delegate void R<T0>(ref T0 t0);
public delegate void I<T0>(in T0 t0);
public delegate void V<T0>(T0 t0);
public delegate void RR<T0, T1>(ref T0 t0, ref T1 t1);
public delegate void RI<T0, T1>(ref T0 t0, in T1 t1);
public delegate void RV<T0, T1>(ref T0 t0, T1 t1);
public delegate void IR<T0, T1>(in T0 t0, ref T1 t1);
public delegate void II<T0, T1>(in T0 t0, in T1 t1);
public delegate void IV<T0, T1>(in T0 t0, T1 t1);
public delegate void VR<T0, T1>(T0 t0, ref T1 t1);
public delegate void VI<T0, T1>(T0 t0, in T1 t1);
public delegate void VV<T0, T1>(T0 t0, T1 t1);
public delegate void RRR<T0, T1, T2>(ref T0 t0, ref T1 t1, ref T2 t2);
public delegate void RRI<T0, T1, T2>(ref T0 t0, ref T1 t1, in T2 t2);
public delegate void RRV<T0, T1, T2>(ref T0 t0, ref T1 t1, T2 t2);
public delegate void RIR<T0, T1, T2>(ref T0 t0, in T1 t1, ref T2 t2);
public delegate void RII<T0, T1, T2>(ref T0 t0, in T1 t1, in T2 t2);
public delegate void RIV<T0, T1, T2>(ref T0 t0, in T1 t1, T2 t2);
public delegate void RVR<T0, T1, T2>(ref T0 t0, T1 t1, ref T2 t2);
public delegate void RVI<T0, T1, T2>(ref T0 t0, T1 t1, in T2 t2);
public delegate void RVV<T0, T1, T2>(ref T0 t0, T1 t1, T2 t2);
public delegate void IRR<T0, T1, T2>(in T0 t0, ref T1 t1, ref T2 t2);
public delegate void IRI<T0, T1, T2>(in T0 t0, ref T1 t1, in T2 t2);
public delegate void IRV<T0, T1, T2>(in T0 t0, ref T1 t1, T2 t2);
public delegate void IIR<T0, T1, T2>(in T0 t0, in T1 t1, ref T2 t2);
public delegate void III<T0, T1, T2>(in T0 t0, in T1 t1, in T2 t2);
public delegate void IIV<T0, T1, T2>(in T0 t0, in T1 t1, T2 t2);
public delegate void IVR<T0, T1, T2>(in T0 t0, T1 t1, ref T2 t2);
public delegate void IVI<T0, T1, T2>(in T0 t0, T1 t1, in T2 t2);
public delegate void IVV<T0, T1, T2>(in T0 t0, T1 t1, T2 t2);
public delegate void VRR<T0, T1, T2>(T0 t0, ref T1 t1, ref T2 t2);
public delegate void VRI<T0, T1, T2>(T0 t0, ref T1 t1, in T2 t2);
public delegate void VRV<T0, T1, T2>(T0 t0, ref T1 t1, T2 t2);
public delegate void VIR<T0, T1, T2>(T0 t0, in T1 t1, ref T2 t2);
public delegate void VII<T0, T1, T2>(T0 t0, in T1 t1, in T2 t2);
public delegate void VIV<T0, T1, T2>(T0 t0, in T1 t1, T2 t2);
public delegate void VVR<T0, T1, T2>(T0 t0, T1 t1, ref T2 t2);
public delegate void VVI<T0, T1, T2>(T0 t0, T1 t1, in T2 t2);
public delegate void VVV<T0, T1, T2>(T0 t0, T1 t1, T2 t2);
public delegate void RRRR<T0, T1, T2, T3>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3);
public delegate void RRRI<T0, T1, T2, T3>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3);
public delegate void RRRV<T0, T1, T2, T3>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3);
public delegate void RRIR<T0, T1, T2, T3>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3);
public delegate void RRII<T0, T1, T2, T3>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3);
public delegate void RRIV<T0, T1, T2, T3>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3);
public delegate void RRVR<T0, T1, T2, T3>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3);
public delegate void RRVI<T0, T1, T2, T3>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3);
public delegate void RRVV<T0, T1, T2, T3>(ref T0 t0, ref T1 t1, T2 t2, T3 t3);
public delegate void RIRR<T0, T1, T2, T3>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3);
public delegate void RIRI<T0, T1, T2, T3>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3);
public delegate void RIRV<T0, T1, T2, T3>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3);
public delegate void RIIR<T0, T1, T2, T3>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3);
public delegate void RIII<T0, T1, T2, T3>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3);
public delegate void RIIV<T0, T1, T2, T3>(ref T0 t0, in T1 t1, in T2 t2, T3 t3);
public delegate void RIVR<T0, T1, T2, T3>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3);
public delegate void RIVI<T0, T1, T2, T3>(ref T0 t0, in T1 t1, T2 t2, in T3 t3);
public delegate void RIVV<T0, T1, T2, T3>(ref T0 t0, in T1 t1, T2 t2, T3 t3);
public delegate void RVRR<T0, T1, T2, T3>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3);
public delegate void RVRI<T0, T1, T2, T3>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3);
public delegate void RVRV<T0, T1, T2, T3>(ref T0 t0, T1 t1, ref T2 t2, T3 t3);
public delegate void RVIR<T0, T1, T2, T3>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3);
public delegate void RVII<T0, T1, T2, T3>(ref T0 t0, T1 t1, in T2 t2, in T3 t3);
public delegate void RVIV<T0, T1, T2, T3>(ref T0 t0, T1 t1, in T2 t2, T3 t3);
public delegate void RVVR<T0, T1, T2, T3>(ref T0 t0, T1 t1, T2 t2, ref T3 t3);
public delegate void RVVI<T0, T1, T2, T3>(ref T0 t0, T1 t1, T2 t2, in T3 t3);
public delegate void RVVV<T0, T1, T2, T3>(ref T0 t0, T1 t1, T2 t2, T3 t3);
public delegate void IRRR<T0, T1, T2, T3>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3);
public delegate void IRRI<T0, T1, T2, T3>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3);
public delegate void IRRV<T0, T1, T2, T3>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3);
public delegate void IRIR<T0, T1, T2, T3>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3);
public delegate void IRII<T0, T1, T2, T3>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3);
public delegate void IRIV<T0, T1, T2, T3>(in T0 t0, ref T1 t1, in T2 t2, T3 t3);
public delegate void IRVR<T0, T1, T2, T3>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3);
public delegate void IRVI<T0, T1, T2, T3>(in T0 t0, ref T1 t1, T2 t2, in T3 t3);
public delegate void IRVV<T0, T1, T2, T3>(in T0 t0, ref T1 t1, T2 t2, T3 t3);
public delegate void IIRR<T0, T1, T2, T3>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3);
public delegate void IIRI<T0, T1, T2, T3>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3);
public delegate void IIRV<T0, T1, T2, T3>(in T0 t0, in T1 t1, ref T2 t2, T3 t3);
public delegate void IIIR<T0, T1, T2, T3>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3);
public delegate void IIII<T0, T1, T2, T3>(in T0 t0, in T1 t1, in T2 t2, in T3 t3);
public delegate void IIIV<T0, T1, T2, T3>(in T0 t0, in T1 t1, in T2 t2, T3 t3);
public delegate void IIVR<T0, T1, T2, T3>(in T0 t0, in T1 t1, T2 t2, ref T3 t3);
public delegate void IIVI<T0, T1, T2, T3>(in T0 t0, in T1 t1, T2 t2, in T3 t3);
public delegate void IIVV<T0, T1, T2, T3>(in T0 t0, in T1 t1, T2 t2, T3 t3);
public delegate void IVRR<T0, T1, T2, T3>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3);
public delegate void IVRI<T0, T1, T2, T3>(in T0 t0, T1 t1, ref T2 t2, in T3 t3);
public delegate void IVRV<T0, T1, T2, T3>(in T0 t0, T1 t1, ref T2 t2, T3 t3);
public delegate void IVIR<T0, T1, T2, T3>(in T0 t0, T1 t1, in T2 t2, ref T3 t3);
public delegate void IVII<T0, T1, T2, T3>(in T0 t0, T1 t1, in T2 t2, in T3 t3);
public delegate void IVIV<T0, T1, T2, T3>(in T0 t0, T1 t1, in T2 t2, T3 t3);
public delegate void IVVR<T0, T1, T2, T3>(in T0 t0, T1 t1, T2 t2, ref T3 t3);
public delegate void IVVI<T0, T1, T2, T3>(in T0 t0, T1 t1, T2 t2, in T3 t3);
public delegate void IVVV<T0, T1, T2, T3>(in T0 t0, T1 t1, T2 t2, T3 t3);
public delegate void VRRR<T0, T1, T2, T3>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3);
public delegate void VRRI<T0, T1, T2, T3>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3);
public delegate void VRRV<T0, T1, T2, T3>(T0 t0, ref T1 t1, ref T2 t2, T3 t3);
public delegate void VRIR<T0, T1, T2, T3>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3);
public delegate void VRII<T0, T1, T2, T3>(T0 t0, ref T1 t1, in T2 t2, in T3 t3);
public delegate void VRIV<T0, T1, T2, T3>(T0 t0, ref T1 t1, in T2 t2, T3 t3);
public delegate void VRVR<T0, T1, T2, T3>(T0 t0, ref T1 t1, T2 t2, ref T3 t3);
public delegate void VRVI<T0, T1, T2, T3>(T0 t0, ref T1 t1, T2 t2, in T3 t3);
public delegate void VRVV<T0, T1, T2, T3>(T0 t0, ref T1 t1, T2 t2, T3 t3);
public delegate void VIRR<T0, T1, T2, T3>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3);
public delegate void VIRI<T0, T1, T2, T3>(T0 t0, in T1 t1, ref T2 t2, in T3 t3);
public delegate void VIRV<T0, T1, T2, T3>(T0 t0, in T1 t1, ref T2 t2, T3 t3);
public delegate void VIIR<T0, T1, T2, T3>(T0 t0, in T1 t1, in T2 t2, ref T3 t3);
public delegate void VIII<T0, T1, T2, T3>(T0 t0, in T1 t1, in T2 t2, in T3 t3);
public delegate void VIIV<T0, T1, T2, T3>(T0 t0, in T1 t1, in T2 t2, T3 t3);
public delegate void VIVR<T0, T1, T2, T3>(T0 t0, in T1 t1, T2 t2, ref T3 t3);
public delegate void VIVI<T0, T1, T2, T3>(T0 t0, in T1 t1, T2 t2, in T3 t3);
public delegate void VIVV<T0, T1, T2, T3>(T0 t0, in T1 t1, T2 t2, T3 t3);
public delegate void VVRR<T0, T1, T2, T3>(T0 t0, T1 t1, ref T2 t2, ref T3 t3);
public delegate void VVRI<T0, T1, T2, T3>(T0 t0, T1 t1, ref T2 t2, in T3 t3);
public delegate void VVRV<T0, T1, T2, T3>(T0 t0, T1 t1, ref T2 t2, T3 t3);
public delegate void VVIR<T0, T1, T2, T3>(T0 t0, T1 t1, in T2 t2, ref T3 t3);
public delegate void VVII<T0, T1, T2, T3>(T0 t0, T1 t1, in T2 t2, in T3 t3);
public delegate void VVIV<T0, T1, T2, T3>(T0 t0, T1 t1, in T2 t2, T3 t3);
public delegate void VVVR<T0, T1, T2, T3>(T0 t0, T1 t1, T2 t2, ref T3 t3);
public delegate void VVVI<T0, T1, T2, T3>(T0 t0, T1 t1, T2 t2, in T3 t3);
public delegate void VVVV<T0, T1, T2, T3>(T0 t0, T1 t1, T2 t2, T3 t3);
public delegate void RRRRR<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4);
public delegate void RRRRI<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4);
public delegate void RRRRV<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4);
public delegate void RRRIR<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4);
public delegate void RRRII<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4);
public delegate void RRRIV<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4);
public delegate void RRRVR<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4);
public delegate void RRRVI<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4);
public delegate void RRRVV<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4);
public delegate void RRIRR<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4);
public delegate void RRIRI<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4);
public delegate void RRIRV<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4);
public delegate void RRIIR<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4);
public delegate void RRIII<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4);
public delegate void RRIIV<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4);
public delegate void RRIVR<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4);
public delegate void RRIVI<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4);
public delegate void RRIVV<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4);
public delegate void RRVRR<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4);
public delegate void RRVRI<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4);
public delegate void RRVRV<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4);
public delegate void RRVIR<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4);
public delegate void RRVII<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4);
public delegate void RRVIV<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4);
public delegate void RRVVR<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4);
public delegate void RRVVI<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4);
public delegate void RRVVV<T0, T1, T2, T3, T4>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4);
public delegate void RIRRR<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4);
public delegate void RIRRI<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4);
public delegate void RIRRV<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4);
public delegate void RIRIR<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4);
public delegate void RIRII<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4);
public delegate void RIRIV<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4);
public delegate void RIRVR<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4);
public delegate void RIRVI<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4);
public delegate void RIRVV<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4);
public delegate void RIIRR<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4);
public delegate void RIIRI<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4);
public delegate void RIIRV<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4);
public delegate void RIIIR<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4);
public delegate void RIIII<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4);
public delegate void RIIIV<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4);
public delegate void RIIVR<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4);
public delegate void RIIVI<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4);
public delegate void RIIVV<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4);
public delegate void RIVRR<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4);
public delegate void RIVRI<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4);
public delegate void RIVRV<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4);
public delegate void RIVIR<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4);
public delegate void RIVII<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4);
public delegate void RIVIV<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4);
public delegate void RIVVR<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4);
public delegate void RIVVI<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4);
public delegate void RIVVV<T0, T1, T2, T3, T4>(ref T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4);
public delegate void RVRRR<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4);
public delegate void RVRRI<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4);
public delegate void RVRRV<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4);
public delegate void RVRIR<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4);
public delegate void RVRII<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4);
public delegate void RVRIV<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4);
public delegate void RVRVR<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4);
public delegate void RVRVI<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4);
public delegate void RVRVV<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4);
public delegate void RVIRR<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4);
public delegate void RVIRI<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4);
public delegate void RVIRV<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4);
public delegate void RVIIR<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4);
public delegate void RVIII<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4);
public delegate void RVIIV<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4);
public delegate void RVIVR<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4);
public delegate void RVIVI<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4);
public delegate void RVIVV<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4);
public delegate void RVVRR<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4);
public delegate void RVVRI<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4);
public delegate void RVVRV<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4);
public delegate void RVVIR<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4);
public delegate void RVVII<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4);
public delegate void RVVIV<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4);
public delegate void RVVVR<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4);
public delegate void RVVVI<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4);
public delegate void RVVVV<T0, T1, T2, T3, T4>(ref T0 t0, T1 t1, T2 t2, T3 t3, T4 t4);
public delegate void IRRRR<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4);
public delegate void IRRRI<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4);
public delegate void IRRRV<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4);
public delegate void IRRIR<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4);
public delegate void IRRII<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4);
public delegate void IRRIV<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4);
public delegate void IRRVR<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4);
public delegate void IRRVI<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4);
public delegate void IRRVV<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4);
public delegate void IRIRR<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4);
public delegate void IRIRI<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4);
public delegate void IRIRV<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4);
public delegate void IRIIR<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4);
public delegate void IRIII<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4);
public delegate void IRIIV<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4);
public delegate void IRIVR<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4);
public delegate void IRIVI<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4);
public delegate void IRIVV<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4);
public delegate void IRVRR<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4);
public delegate void IRVRI<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4);
public delegate void IRVRV<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4);
public delegate void IRVIR<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4);
public delegate void IRVII<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4);
public delegate void IRVIV<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4);
public delegate void IRVVR<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4);
public delegate void IRVVI<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4);
public delegate void IRVVV<T0, T1, T2, T3, T4>(in T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4);
public delegate void IIRRR<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4);
public delegate void IIRRI<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4);
public delegate void IIRRV<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4);
public delegate void IIRIR<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4);
public delegate void IIRII<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4);
public delegate void IIRIV<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4);
public delegate void IIRVR<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4);
public delegate void IIRVI<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4);
public delegate void IIRVV<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4);
public delegate void IIIRR<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4);
public delegate void IIIRI<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4);
public delegate void IIIRV<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4);
public delegate void IIIIR<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4);
public delegate void IIIII<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4);
public delegate void IIIIV<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4);
public delegate void IIIVR<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4);
public delegate void IIIVI<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4);
public delegate void IIIVV<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4);
public delegate void IIVRR<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4);
public delegate void IIVRI<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4);
public delegate void IIVRV<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4);
public delegate void IIVIR<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4);
public delegate void IIVII<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4);
public delegate void IIVIV<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4);
public delegate void IIVVR<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4);
public delegate void IIVVI<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4);
public delegate void IIVVV<T0, T1, T2, T3, T4>(in T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4);
public delegate void IVRRR<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4);
public delegate void IVRRI<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4);
public delegate void IVRRV<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4);
public delegate void IVRIR<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4);
public delegate void IVRII<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4);
public delegate void IVRIV<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4);
public delegate void IVRVR<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4);
public delegate void IVRVI<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4);
public delegate void IVRVV<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4);
public delegate void IVIRR<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4);
public delegate void IVIRI<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4);
public delegate void IVIRV<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4);
public delegate void IVIIR<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4);
public delegate void IVIII<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4);
public delegate void IVIIV<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4);
public delegate void IVIVR<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4);
public delegate void IVIVI<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4);
public delegate void IVIVV<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4);
public delegate void IVVRR<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4);
public delegate void IVVRI<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4);
public delegate void IVVRV<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4);
public delegate void IVVIR<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4);
public delegate void IVVII<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4);
public delegate void IVVIV<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4);
public delegate void IVVVR<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4);
public delegate void IVVVI<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4);
public delegate void IVVVV<T0, T1, T2, T3, T4>(in T0 t0, T1 t1, T2 t2, T3 t3, T4 t4);
public delegate void VRRRR<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4);
public delegate void VRRRI<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4);
public delegate void VRRRV<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4);
public delegate void VRRIR<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4);
public delegate void VRRII<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4);
public delegate void VRRIV<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4);
public delegate void VRRVR<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4);
public delegate void VRRVI<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4);
public delegate void VRRVV<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4);
public delegate void VRIRR<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4);
public delegate void VRIRI<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4);
public delegate void VRIRV<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4);
public delegate void VRIIR<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4);
public delegate void VRIII<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4);
public delegate void VRIIV<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4);
public delegate void VRIVR<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4);
public delegate void VRIVI<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4);
public delegate void VRIVV<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4);
public delegate void VRVRR<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4);
public delegate void VRVRI<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4);
public delegate void VRVRV<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4);
public delegate void VRVIR<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4);
public delegate void VRVII<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4);
public delegate void VRVIV<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4);
public delegate void VRVVR<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4);
public delegate void VRVVI<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4);
public delegate void VRVVV<T0, T1, T2, T3, T4>(T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4);
public delegate void VIRRR<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4);
public delegate void VIRRI<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4);
public delegate void VIRRV<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4);
public delegate void VIRIR<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4);
public delegate void VIRII<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4);
public delegate void VIRIV<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4);
public delegate void VIRVR<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4);
public delegate void VIRVI<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4);
public delegate void VIRVV<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4);
public delegate void VIIRR<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4);
public delegate void VIIRI<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4);
public delegate void VIIRV<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4);
public delegate void VIIIR<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4);
public delegate void VIIII<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4);
public delegate void VIIIV<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4);
public delegate void VIIVR<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4);
public delegate void VIIVI<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4);
public delegate void VIIVV<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4);
public delegate void VIVRR<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4);
public delegate void VIVRI<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4);
public delegate void VIVRV<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4);
public delegate void VIVIR<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4);
public delegate void VIVII<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4);
public delegate void VIVIV<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4);
public delegate void VIVVR<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4);
public delegate void VIVVI<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4);
public delegate void VIVVV<T0, T1, T2, T3, T4>(T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4);
public delegate void VVRRR<T0, T1, T2, T3, T4>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4);
public delegate void VVRRI<T0, T1, T2, T3, T4>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4);
public delegate void VVRRV<T0, T1, T2, T3, T4>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4);
public delegate void VVRIR<T0, T1, T2, T3, T4>(T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4);
public delegate void VVRII<T0, T1, T2, T3, T4>(T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4);
public delegate void VVRIV<T0, T1, T2, T3, T4>(T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4);
public delegate void VVRVR<T0, T1, T2, T3, T4>(T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4);
public delegate void VVRVI<T0, T1, T2, T3, T4>(T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4);
public delegate void VVRVV<T0, T1, T2, T3, T4>(T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4);
public delegate void VVIRR<T0, T1, T2, T3, T4>(T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4);
public delegate void VVIRI<T0, T1, T2, T3, T4>(T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4);
public delegate void VVIRV<T0, T1, T2, T3, T4>(T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4);
public delegate void VVIIR<T0, T1, T2, T3, T4>(T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4);
public delegate void VVIII<T0, T1, T2, T3, T4>(T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4);
public delegate void VVIIV<T0, T1, T2, T3, T4>(T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4);
public delegate void VVIVR<T0, T1, T2, T3, T4>(T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4);
public delegate void VVIVI<T0, T1, T2, T3, T4>(T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4);
public delegate void VVIVV<T0, T1, T2, T3, T4>(T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4);
public delegate void VVVRR<T0, T1, T2, T3, T4>(T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4);
public delegate void VVVRI<T0, T1, T2, T3, T4>(T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4);
public delegate void VVVRV<T0, T1, T2, T3, T4>(T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4);
public delegate void VVVIR<T0, T1, T2, T3, T4>(T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4);
public delegate void VVVII<T0, T1, T2, T3, T4>(T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4);
public delegate void VVVIV<T0, T1, T2, T3, T4>(T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4);
public delegate void VVVVR<T0, T1, T2, T3, T4>(T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4);
public delegate void VVVVI<T0, T1, T2, T3, T4>(T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4);
public delegate void VVVVV<T0, T1, T2, T3, T4>(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4);
public delegate void RRRRRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void RRRRRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void RRRRRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void RRRRIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void RRRRII<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void RRRRIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void RRRRVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void RRRRVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void RRRRVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void RRRIRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void RRRIRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void RRRIRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void RRRIIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void RRRIII<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void RRRIIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void RRRIVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void RRRIVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void RRRIVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void RRRVRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void RRRVRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void RRRVRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void RRRVIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void RRRVII<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void RRRVIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void RRRVVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void RRRVVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void RRRVVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void RRIRRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void RRIRRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void RRIRRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void RRIRIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void RRIRII<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void RRIRIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void RRIRVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void RRIRVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void RRIRVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void RRIIRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void RRIIRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void RRIIRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void RRIIIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void RRIIII<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void RRIIIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void RRIIVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void RRIIVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void RRIIVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void RRIVRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void RRIVRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void RRIVRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void RRIVIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void RRIVII<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void RRIVIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void RRIVVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void RRIVVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void RRIVVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void RRVRRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void RRVRRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void RRVRRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void RRVRIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void RRVRII<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void RRVRIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void RRVRVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void RRVRVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void RRVRVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void RRVIRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void RRVIRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void RRVIRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void RRVIIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void RRVIII<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void RRVIIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void RRVIVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void RRVIVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void RRVIVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void RRVVRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void RRVVRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void RRVVRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void RRVVIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void RRVVII<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void RRVVIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void RRVVVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void RRVVVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void RRVVVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void RIRRRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void RIRRRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void RIRRRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void RIRRIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void RIRRII<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void RIRRIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void RIRRVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void RIRRVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void RIRRVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void RIRIRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void RIRIRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void RIRIRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void RIRIIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void RIRIII<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void RIRIIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void RIRIVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void RIRIVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void RIRIVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void RIRVRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void RIRVRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void RIRVRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void RIRVIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void RIRVII<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void RIRVIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void RIRVVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void RIRVVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void RIRVVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void RIIRRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void RIIRRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void RIIRRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void RIIRIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void RIIRII<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void RIIRIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void RIIRVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void RIIRVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void RIIRVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void RIIIRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void RIIIRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void RIIIRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void RIIIIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void RIIIII<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void RIIIIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void RIIIVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void RIIIVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void RIIIVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void RIIVRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void RIIVRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void RIIVRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void RIIVIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void RIIVII<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void RIIVIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void RIIVVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void RIIVVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void RIIVVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void RIVRRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void RIVRRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void RIVRRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void RIVRIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void RIVRII<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void RIVRIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void RIVRVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void RIVRVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void RIVRVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void RIVIRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void RIVIRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void RIVIRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void RIVIIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void RIVIII<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void RIVIIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void RIVIVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void RIVIVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void RIVIVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void RIVVRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void RIVVRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void RIVVRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void RIVVIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void RIVVII<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void RIVVIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void RIVVVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void RIVVVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void RIVVVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void RVRRRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void RVRRRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void RVRRRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void RVRRIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void RVRRII<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void RVRRIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void RVRRVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void RVRRVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void RVRRVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void RVRIRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void RVRIRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void RVRIRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void RVRIIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void RVRIII<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void RVRIIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void RVRIVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void RVRIVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void RVRIVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void RVRVRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void RVRVRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void RVRVRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void RVRVIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void RVRVII<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void RVRVIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void RVRVVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void RVRVVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void RVRVVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void RVIRRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void RVIRRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void RVIRRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void RVIRIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void RVIRII<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void RVIRIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void RVIRVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void RVIRVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void RVIRVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void RVIIRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void RVIIRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void RVIIRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void RVIIIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void RVIIII<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void RVIIIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void RVIIVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void RVIIVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void RVIIVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void RVIVRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void RVIVRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void RVIVRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void RVIVIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void RVIVII<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void RVIVIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void RVIVVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void RVIVVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void RVIVVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void RVVRRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void RVVRRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void RVVRRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void RVVRIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void RVVRII<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void RVVRIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void RVVRVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void RVVRVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void RVVRVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void RVVIRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void RVVIRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void RVVIRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void RVVIIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void RVVIII<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void RVVIIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void RVVIVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void RVVIVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void RVVIVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void RVVVRR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void RVVVRI<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void RVVVRV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void RVVVIR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void RVVVII<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void RVVVIV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void RVVVVR<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void RVVVVI<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void RVVVVV<T0, T1, T2, T3, T4, T5>(ref T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void IRRRRR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void IRRRRI<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void IRRRRV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void IRRRIR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void IRRRII<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void IRRRIV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void IRRRVR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void IRRRVI<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void IRRRVV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void IRRIRR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void IRRIRI<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void IRRIRV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void IRRIIR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void IRRIII<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void IRRIIV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void IRRIVR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void IRRIVI<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void IRRIVV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void IRRVRR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void IRRVRI<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void IRRVRV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void IRRVIR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void IRRVII<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void IRRVIV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void IRRVVR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void IRRVVI<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void IRRVVV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void IRIRRR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void IRIRRI<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void IRIRRV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void IRIRIR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void IRIRII<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void IRIRIV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void IRIRVR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void IRIRVI<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void IRIRVV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void IRIIRR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void IRIIRI<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void IRIIRV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void IRIIIR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void IRIIII<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void IRIIIV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void IRIIVR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void IRIIVI<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void IRIIVV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void IRIVRR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void IRIVRI<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void IRIVRV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void IRIVIR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void IRIVII<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void IRIVIV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void IRIVVR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void IRIVVI<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void IRIVVV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void IRVRRR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void IRVRRI<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void IRVRRV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void IRVRIR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void IRVRII<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void IRVRIV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void IRVRVR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void IRVRVI<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void IRVRVV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void IRVIRR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void IRVIRI<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void IRVIRV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void IRVIIR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void IRVIII<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void IRVIIV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void IRVIVR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void IRVIVI<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void IRVIVV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void IRVVRR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void IRVVRI<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void IRVVRV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void IRVVIR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void IRVVII<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void IRVVIV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void IRVVVR<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void IRVVVI<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void IRVVVV<T0, T1, T2, T3, T4, T5>(in T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void IIRRRR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void IIRRRI<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void IIRRRV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void IIRRIR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void IIRRII<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void IIRRIV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void IIRRVR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void IIRRVI<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void IIRRVV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void IIRIRR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void IIRIRI<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void IIRIRV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void IIRIIR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void IIRIII<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void IIRIIV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void IIRIVR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void IIRIVI<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void IIRIVV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void IIRVRR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void IIRVRI<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void IIRVRV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void IIRVIR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void IIRVII<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void IIRVIV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void IIRVVR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void IIRVVI<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void IIRVVV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void IIIRRR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void IIIRRI<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void IIIRRV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void IIIRIR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void IIIRII<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void IIIRIV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void IIIRVR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void IIIRVI<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void IIIRVV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void IIIIRR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void IIIIRI<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void IIIIRV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void IIIIIR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void IIIIII<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void IIIIIV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void IIIIVR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void IIIIVI<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void IIIIVV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void IIIVRR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void IIIVRI<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void IIIVRV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void IIIVIR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void IIIVII<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void IIIVIV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void IIIVVR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void IIIVVI<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void IIIVVV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void IIVRRR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void IIVRRI<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void IIVRRV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void IIVRIR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void IIVRII<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void IIVRIV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void IIVRVR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void IIVRVI<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void IIVRVV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void IIVIRR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void IIVIRI<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void IIVIRV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void IIVIIR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void IIVIII<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void IIVIIV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void IIVIVR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void IIVIVI<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void IIVIVV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void IIVVRR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void IIVVRI<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void IIVVRV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void IIVVIR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void IIVVII<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void IIVVIV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void IIVVVR<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void IIVVVI<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void IIVVVV<T0, T1, T2, T3, T4, T5>(in T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void IVRRRR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void IVRRRI<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void IVRRRV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void IVRRIR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void IVRRII<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void IVRRIV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void IVRRVR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void IVRRVI<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void IVRRVV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void IVRIRR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void IVRIRI<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void IVRIRV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void IVRIIR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void IVRIII<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void IVRIIV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void IVRIVR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void IVRIVI<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void IVRIVV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void IVRVRR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void IVRVRI<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void IVRVRV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void IVRVIR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void IVRVII<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void IVRVIV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void IVRVVR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void IVRVVI<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void IVRVVV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void IVIRRR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void IVIRRI<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void IVIRRV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void IVIRIR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void IVIRII<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void IVIRIV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void IVIRVR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void IVIRVI<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void IVIRVV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void IVIIRR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void IVIIRI<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void IVIIRV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void IVIIIR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void IVIIII<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void IVIIIV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void IVIIVR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void IVIIVI<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void IVIIVV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void IVIVRR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void IVIVRI<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void IVIVRV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void IVIVIR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void IVIVII<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void IVIVIV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void IVIVVR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void IVIVVI<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void IVIVVV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void IVVRRR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void IVVRRI<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void IVVRRV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void IVVRIR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void IVVRII<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void IVVRIV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void IVVRVR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void IVVRVI<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void IVVRVV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void IVVIRR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void IVVIRI<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void IVVIRV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void IVVIIR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void IVVIII<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void IVVIIV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void IVVIVR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void IVVIVI<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void IVVIVV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void IVVVRR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void IVVVRI<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void IVVVRV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void IVVVIR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void IVVVII<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void IVVVIV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void IVVVVR<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void IVVVVI<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void IVVVVV<T0, T1, T2, T3, T4, T5>(in T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void VRRRRR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void VRRRRI<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void VRRRRV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void VRRRIR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void VRRRII<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void VRRRIV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void VRRRVR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void VRRRVI<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void VRRRVV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void VRRIRR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void VRRIRI<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void VRRIRV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void VRRIIR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void VRRIII<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void VRRIIV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void VRRIVR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void VRRIVI<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void VRRIVV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void VRRVRR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void VRRVRI<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void VRRVRV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void VRRVIR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void VRRVII<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void VRRVIV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void VRRVVR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void VRRVVI<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void VRRVVV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void VRIRRR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void VRIRRI<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void VRIRRV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void VRIRIR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void VRIRII<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void VRIRIV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void VRIRVR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void VRIRVI<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void VRIRVV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void VRIIRR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void VRIIRI<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void VRIIRV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void VRIIIR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void VRIIII<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void VRIIIV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void VRIIVR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void VRIIVI<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void VRIIVV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void VRIVRR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void VRIVRI<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void VRIVRV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void VRIVIR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void VRIVII<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void VRIVIV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void VRIVVR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void VRIVVI<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void VRIVVV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void VRVRRR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void VRVRRI<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void VRVRRV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void VRVRIR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void VRVRII<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void VRVRIV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void VRVRVR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void VRVRVI<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void VRVRVV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void VRVIRR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void VRVIRI<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void VRVIRV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void VRVIIR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void VRVIII<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void VRVIIV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void VRVIVR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void VRVIVI<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void VRVIVV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void VRVVRR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void VRVVRI<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void VRVVRV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void VRVVIR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void VRVVII<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void VRVVIV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void VRVVVR<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void VRVVVI<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void VRVVVV<T0, T1, T2, T3, T4, T5>(T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void VIRRRR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void VIRRRI<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void VIRRRV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void VIRRIR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void VIRRII<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void VIRRIV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void VIRRVR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void VIRRVI<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void VIRRVV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void VIRIRR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void VIRIRI<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void VIRIRV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void VIRIIR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void VIRIII<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void VIRIIV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void VIRIVR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void VIRIVI<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void VIRIVV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void VIRVRR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void VIRVRI<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void VIRVRV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void VIRVIR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void VIRVII<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void VIRVIV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void VIRVVR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void VIRVVI<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void VIRVVV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void VIIRRR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void VIIRRI<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void VIIRRV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void VIIRIR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void VIIRII<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void VIIRIV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void VIIRVR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void VIIRVI<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void VIIRVV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void VIIIRR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void VIIIRI<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void VIIIRV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void VIIIIR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void VIIIII<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void VIIIIV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void VIIIVR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void VIIIVI<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void VIIIVV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void VIIVRR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void VIIVRI<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void VIIVRV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void VIIVIR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void VIIVII<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void VIIVIV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void VIIVVR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void VIIVVI<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void VIIVVV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void VIVRRR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void VIVRRI<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void VIVRRV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void VIVRIR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void VIVRII<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void VIVRIV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void VIVRVR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void VIVRVI<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void VIVRVV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void VIVIRR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void VIVIRI<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void VIVIRV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void VIVIIR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void VIVIII<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void VIVIIV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void VIVIVR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void VIVIVI<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void VIVIVV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void VIVVRR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void VIVVRI<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void VIVVRV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void VIVVIR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void VIVVII<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void VIVVIV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void VIVVVR<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void VIVVVI<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void VIVVVV<T0, T1, T2, T3, T4, T5>(T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void VVRRRR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void VVRRRI<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void VVRRRV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void VVRRIR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void VVRRII<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void VVRRIV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void VVRRVR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void VVRRVI<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void VVRRVV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void VVRIRR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void VVRIRI<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void VVRIRV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void VVRIIR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void VVRIII<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void VVRIIV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void VVRIVR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void VVRIVI<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void VVRIVV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void VVRVRR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void VVRVRI<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void VVRVRV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void VVRVIR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void VVRVII<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void VVRVIV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void VVRVVR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void VVRVVI<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void VVRVVV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void VVIRRR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void VVIRRI<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void VVIRRV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void VVIRIR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void VVIRII<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void VVIRIV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void VVIRVR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void VVIRVI<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void VVIRVV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void VVIIRR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void VVIIRI<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void VVIIRV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void VVIIIR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void VVIIII<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void VVIIIV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void VVIIVR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void VVIIVI<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void VVIIVV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void VVIVRR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void VVIVRI<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void VVIVRV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void VVIVIR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void VVIVII<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void VVIVIV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void VVIVVR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void VVIVVI<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void VVIVVV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void VVVRRR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5);
public delegate void VVVRRI<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5);
public delegate void VVVRRV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5);
public delegate void VVVRIR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5);
public delegate void VVVRII<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5);
public delegate void VVVRIV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5);
public delegate void VVVRVR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5);
public delegate void VVVRVI<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5);
public delegate void VVVRVV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5);
public delegate void VVVIRR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5);
public delegate void VVVIRI<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5);
public delegate void VVVIRV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5);
public delegate void VVVIIR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5);
public delegate void VVVIII<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5);
public delegate void VVVIIV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5);
public delegate void VVVIVR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5);
public delegate void VVVIVI<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5);
public delegate void VVVIVV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5);
public delegate void VVVVRR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5);
public delegate void VVVVRI<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5);
public delegate void VVVVRV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5);
public delegate void VVVVIR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5);
public delegate void VVVVII<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5);
public delegate void VVVVIV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5);
public delegate void VVVVVR<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5);
public delegate void VVVVVI<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5);
public delegate void VVVVVV<T0, T1, T2, T3, T4, T5>(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5);
public delegate void RRRRRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRRRRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RRRRRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RRRRRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RRRRRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RRRRRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RRRRRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RRRRRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RRRRRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RRRRIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRRRIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RRRRIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RRRRIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RRRRIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RRRRIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RRRRIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RRRRIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RRRRIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RRRRVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRRRVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RRRRVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RRRRVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RRRRVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RRRRVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RRRRVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RRRRVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RRRRVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RRRIRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRRIRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RRRIRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RRRIRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RRRIRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RRRIRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RRRIRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RRRIRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RRRIRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RRRIIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRRIIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RRRIIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RRRIIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RRRIIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RRRIIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RRRIIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RRRIIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RRRIIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RRRIVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRRIVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RRRIVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RRRIVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RRRIVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RRRIVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RRRIVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RRRIVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RRRIVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RRRVRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRRVRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RRRVRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RRRVRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RRRVRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RRRVRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RRRVRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RRRVRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RRRVRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RRRVIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRRVIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RRRVIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RRRVIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RRRVIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RRRVIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RRRVIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RRRVIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RRRVIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RRRVVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRRVVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RRRVVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RRRVVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RRRVVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RRRVVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RRRVVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RRRVVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RRRVVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RRIRRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRIRRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RRIRRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RRIRRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RRIRRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RRIRRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RRIRRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RRIRRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RRIRRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RRIRIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRIRIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RRIRIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RRIRIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RRIRIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RRIRIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RRIRIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RRIRIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RRIRIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RRIRVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRIRVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RRIRVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RRIRVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RRIRVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RRIRVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RRIRVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RRIRVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RRIRVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RRIIRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRIIRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RRIIRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RRIIRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RRIIRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RRIIRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RRIIRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RRIIRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RRIIRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RRIIIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRIIIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RRIIIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RRIIIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RRIIIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RRIIIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RRIIIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RRIIIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RRIIIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RRIIVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRIIVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RRIIVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RRIIVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RRIIVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RRIIVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RRIIVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RRIIVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RRIIVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RRIVRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRIVRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RRIVRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RRIVRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RRIVRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RRIVRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RRIVRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RRIVRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RRIVRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RRIVIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRIVIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RRIVIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RRIVIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RRIVIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RRIVIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RRIVIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RRIVIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RRIVIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RRIVVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRIVVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RRIVVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RRIVVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RRIVVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RRIVVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RRIVVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RRIVVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RRIVVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RRVRRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRVRRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RRVRRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RRVRRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RRVRRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RRVRRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RRVRRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RRVRRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RRVRRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RRVRIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRVRIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RRVRIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RRVRIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RRVRIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RRVRIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RRVRIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RRVRIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RRVRIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RRVRVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRVRVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RRVRVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RRVRVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RRVRVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RRVRVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RRVRVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RRVRVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RRVRVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RRVIRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRVIRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RRVIRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RRVIRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RRVIRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RRVIRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RRVIRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RRVIRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RRVIRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RRVIIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRVIIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RRVIIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RRVIIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RRVIIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RRVIIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RRVIIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RRVIIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RRVIIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RRVIVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRVIVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RRVIVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RRVIVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RRVIVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RRVIVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RRVIVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RRVIVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RRVIVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RRVVRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRVVRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RRVVRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RRVVRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RRVVRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RRVVRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RRVVRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RRVVRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RRVVRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RRVVIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRVVIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RRVVIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RRVVIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RRVVIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RRVVIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RRVVIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RRVVIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RRVVIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RRVVVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RRVVVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RRVVVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RRVVVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RRVVVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RRVVVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RRVVVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RRVVVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RRVVVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RIRRRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIRRRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RIRRRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RIRRRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RIRRRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RIRRRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RIRRRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RIRRRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RIRRRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RIRRIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIRRIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RIRRIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RIRRIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RIRRIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RIRRIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RIRRIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RIRRIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RIRRIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RIRRVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIRRVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RIRRVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RIRRVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RIRRVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RIRRVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RIRRVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RIRRVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RIRRVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RIRIRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIRIRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RIRIRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RIRIRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RIRIRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RIRIRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RIRIRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RIRIRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RIRIRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RIRIIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIRIIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RIRIIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RIRIIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RIRIIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RIRIIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RIRIIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RIRIIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RIRIIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RIRIVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIRIVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RIRIVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RIRIVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RIRIVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RIRIVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RIRIVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RIRIVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RIRIVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RIRVRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIRVRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RIRVRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RIRVRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RIRVRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RIRVRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RIRVRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RIRVRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RIRVRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RIRVIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIRVIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RIRVIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RIRVIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RIRVIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RIRVIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RIRVIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RIRVIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RIRVIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RIRVVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIRVVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RIRVVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RIRVVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RIRVVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RIRVVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RIRVVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RIRVVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RIRVVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RIIRRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIIRRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RIIRRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RIIRRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RIIRRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RIIRRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RIIRRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RIIRRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RIIRRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RIIRIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIIRIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RIIRIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RIIRIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RIIRIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RIIRIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RIIRIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RIIRIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RIIRIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RIIRVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIIRVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RIIRVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RIIRVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RIIRVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RIIRVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RIIRVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RIIRVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RIIRVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RIIIRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIIIRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RIIIRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RIIIRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RIIIRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RIIIRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RIIIRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RIIIRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RIIIRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RIIIIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIIIIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RIIIIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RIIIIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RIIIIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RIIIIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RIIIIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RIIIIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RIIIIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RIIIVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIIIVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RIIIVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RIIIVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RIIIVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RIIIVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RIIIVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RIIIVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RIIIVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RIIVRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIIVRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RIIVRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RIIVRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RIIVRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RIIVRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RIIVRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RIIVRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RIIVRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RIIVIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIIVIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RIIVIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RIIVIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RIIVIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RIIVIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RIIVIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RIIVIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RIIVIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RIIVVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIIVVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RIIVVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RIIVVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RIIVVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RIIVVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RIIVVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RIIVVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RIIVVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RIVRRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIVRRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RIVRRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RIVRRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RIVRRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RIVRRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RIVRRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RIVRRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RIVRRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RIVRIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIVRIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RIVRIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RIVRIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RIVRIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RIVRIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RIVRIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RIVRIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RIVRIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RIVRVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIVRVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RIVRVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RIVRVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RIVRVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RIVRVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RIVRVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RIVRVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RIVRVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RIVIRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIVIRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RIVIRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RIVIRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RIVIRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RIVIRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RIVIRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RIVIRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RIVIRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RIVIIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIVIIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RIVIIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RIVIIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RIVIIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RIVIIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RIVIIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RIVIIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RIVIIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RIVIVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIVIVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RIVIVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RIVIVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RIVIVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RIVIVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RIVIVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RIVIVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RIVIVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RIVVRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIVVRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RIVVRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RIVVRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RIVVRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RIVVRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RIVVRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RIVVRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RIVVRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RIVVIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIVVIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RIVVIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RIVVIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RIVVIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RIVVIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RIVVIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RIVVIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RIVVIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RIVVVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RIVVVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RIVVVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RIVVVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RIVVVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RIVVVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RIVVVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RIVVVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RIVVVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RVRRRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVRRRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RVRRRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RVRRRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RVRRRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RVRRRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RVRRRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RVRRRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RVRRRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RVRRIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVRRIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RVRRIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RVRRIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RVRRIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RVRRIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RVRRIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RVRRIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RVRRIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RVRRVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVRRVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RVRRVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RVRRVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RVRRVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RVRRVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RVRRVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RVRRVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RVRRVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RVRIRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVRIRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RVRIRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RVRIRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RVRIRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RVRIRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RVRIRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RVRIRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RVRIRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RVRIIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVRIIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RVRIIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RVRIIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RVRIIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RVRIIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RVRIIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RVRIIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RVRIIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RVRIVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVRIVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RVRIVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RVRIVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RVRIVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RVRIVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RVRIVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RVRIVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RVRIVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RVRVRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVRVRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RVRVRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RVRVRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RVRVRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RVRVRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RVRVRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RVRVRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RVRVRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RVRVIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVRVIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RVRVIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RVRVIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RVRVIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RVRVIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RVRVIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RVRVIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RVRVIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RVRVVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVRVVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RVRVVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RVRVVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RVRVVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RVRVVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RVRVVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RVRVVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RVRVVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RVIRRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVIRRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RVIRRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RVIRRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RVIRRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RVIRRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RVIRRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RVIRRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RVIRRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RVIRIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVIRIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RVIRIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RVIRIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RVIRIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RVIRIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RVIRIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RVIRIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RVIRIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RVIRVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVIRVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RVIRVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RVIRVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RVIRVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RVIRVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RVIRVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RVIRVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RVIRVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RVIIRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVIIRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RVIIRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RVIIRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RVIIRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RVIIRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RVIIRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RVIIRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RVIIRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RVIIIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVIIIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RVIIIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RVIIIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RVIIIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RVIIIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RVIIIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RVIIIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RVIIIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RVIIVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVIIVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RVIIVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RVIIVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RVIIVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RVIIVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RVIIVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RVIIVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RVIIVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RVIVRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVIVRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RVIVRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RVIVRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RVIVRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RVIVRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RVIVRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RVIVRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RVIVRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RVIVIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVIVIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RVIVIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RVIVIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RVIVIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RVIVIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RVIVIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RVIVIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RVIVIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RVIVVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVIVVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RVIVVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RVIVVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RVIVVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RVIVVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RVIVVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RVIVVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RVIVVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RVVRRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVVRRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RVVRRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RVVRRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RVVRRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RVVRRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RVVRRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RVVRRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RVVRRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RVVRIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVVRIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RVVRIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RVVRIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RVVRIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RVVRIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RVVRIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RVVRIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RVVRIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RVVRVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVVRVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RVVRVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RVVRVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RVVRVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RVVRVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RVVRVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RVVRVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RVVRVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RVVIRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVVIRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RVVIRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RVVIRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RVVIRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RVVIRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RVVIRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RVVIRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RVVIRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RVVIIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVVIIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RVVIIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RVVIIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RVVIIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RVVIIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RVVIIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RVVIIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RVVIIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RVVIVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVVIVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RVVIVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RVVIVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RVVIVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RVVIVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RVVIVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RVVIVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RVVIVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void RVVVRRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVVVRRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void RVVVRRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void RVVVRIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void RVVVRII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void RVVVRIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void RVVVRVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void RVVVRVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void RVVVRVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void RVVVIRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVVVIRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void RVVVIRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void RVVVIIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void RVVVIII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void RVVVIIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void RVVVIVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void RVVVIVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void RVVVIVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void RVVVVRR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void RVVVVRI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void RVVVVRV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void RVVVVIR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void RVVVVII<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void RVVVVIV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void RVVVVVR<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void RVVVVVI<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void RVVVVVV<T0, T1, T2, T3, T4, T5, T6>(ref T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IRRRRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRRRRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IRRRRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IRRRRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IRRRRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IRRRRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IRRRRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IRRRRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IRRRRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IRRRIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRRRIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IRRRIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IRRRIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IRRRIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IRRRIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IRRRIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IRRRIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IRRRIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IRRRVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRRRVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IRRRVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IRRRVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IRRRVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IRRRVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IRRRVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IRRRVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IRRRVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IRRIRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRRIRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IRRIRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IRRIRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IRRIRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IRRIRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IRRIRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IRRIRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IRRIRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IRRIIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRRIIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IRRIIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IRRIIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IRRIIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IRRIIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IRRIIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IRRIIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IRRIIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IRRIVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRRIVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IRRIVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IRRIVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IRRIVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IRRIVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IRRIVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IRRIVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IRRIVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IRRVRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRRVRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IRRVRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IRRVRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IRRVRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IRRVRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IRRVRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IRRVRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IRRVRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IRRVIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRRVIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IRRVIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IRRVIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IRRVIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IRRVIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IRRVIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IRRVIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IRRVIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IRRVVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRRVVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IRRVVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IRRVVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IRRVVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IRRVVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IRRVVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IRRVVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IRRVVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IRIRRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRIRRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IRIRRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IRIRRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IRIRRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IRIRRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IRIRRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IRIRRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IRIRRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IRIRIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRIRIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IRIRIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IRIRIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IRIRIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IRIRIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IRIRIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IRIRIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IRIRIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IRIRVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRIRVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IRIRVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IRIRVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IRIRVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IRIRVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IRIRVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IRIRVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IRIRVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IRIIRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRIIRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IRIIRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IRIIRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IRIIRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IRIIRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IRIIRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IRIIRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IRIIRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IRIIIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRIIIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IRIIIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IRIIIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IRIIIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IRIIIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IRIIIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IRIIIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IRIIIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IRIIVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRIIVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IRIIVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IRIIVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IRIIVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IRIIVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IRIIVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IRIIVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IRIIVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IRIVRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRIVRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IRIVRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IRIVRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IRIVRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IRIVRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IRIVRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IRIVRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IRIVRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IRIVIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRIVIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IRIVIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IRIVIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IRIVIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IRIVIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IRIVIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IRIVIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IRIVIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IRIVVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRIVVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IRIVVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IRIVVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IRIVVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IRIVVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IRIVVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IRIVVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IRIVVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IRVRRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRVRRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IRVRRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IRVRRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IRVRRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IRVRRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IRVRRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IRVRRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IRVRRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IRVRIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRVRIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IRVRIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IRVRIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IRVRIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IRVRIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IRVRIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IRVRIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IRVRIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IRVRVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRVRVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IRVRVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IRVRVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IRVRVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IRVRVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IRVRVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IRVRVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IRVRVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IRVIRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRVIRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IRVIRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IRVIRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IRVIRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IRVIRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IRVIRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IRVIRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IRVIRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IRVIIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRVIIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IRVIIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IRVIIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IRVIIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IRVIIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IRVIIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IRVIIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IRVIIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IRVIVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRVIVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IRVIVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IRVIVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IRVIVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IRVIVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IRVIVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IRVIVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IRVIVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IRVVRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRVVRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IRVVRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IRVVRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IRVVRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IRVVRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IRVVRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IRVVRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IRVVRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IRVVIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRVVIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IRVVIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IRVVIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IRVVIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IRVVIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IRVVIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IRVVIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IRVVIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IRVVVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IRVVVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IRVVVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IRVVVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IRVVVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IRVVVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IRVVVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IRVVVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IRVVVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IIRRRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIRRRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IIRRRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IIRRRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IIRRRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IIRRRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IIRRRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IIRRRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IIRRRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IIRRIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIRRIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IIRRIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IIRRIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IIRRIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IIRRIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IIRRIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IIRRIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IIRRIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IIRRVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIRRVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IIRRVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IIRRVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IIRRVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IIRRVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IIRRVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IIRRVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IIRRVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IIRIRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIRIRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IIRIRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IIRIRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IIRIRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IIRIRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IIRIRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IIRIRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IIRIRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IIRIIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIRIIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IIRIIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IIRIIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IIRIIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IIRIIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IIRIIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IIRIIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IIRIIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IIRIVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIRIVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IIRIVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IIRIVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IIRIVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IIRIVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IIRIVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IIRIVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IIRIVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IIRVRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIRVRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IIRVRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IIRVRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IIRVRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IIRVRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IIRVRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IIRVRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IIRVRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IIRVIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIRVIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IIRVIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IIRVIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IIRVIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IIRVIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IIRVIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IIRVIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IIRVIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IIRVVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIRVVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IIRVVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IIRVVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IIRVVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IIRVVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IIRVVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IIRVVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IIRVVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IIIRRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIIRRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IIIRRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IIIRRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IIIRRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IIIRRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IIIRRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IIIRRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IIIRRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IIIRIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIIRIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IIIRIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IIIRIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IIIRIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IIIRIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IIIRIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IIIRIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IIIRIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IIIRVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIIRVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IIIRVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IIIRVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IIIRVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IIIRVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IIIRVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IIIRVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IIIRVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IIIIRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIIIRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IIIIRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IIIIRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IIIIRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IIIIRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IIIIRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IIIIRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IIIIRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IIIIIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIIIIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IIIIIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IIIIIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IIIIIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IIIIIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IIIIIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IIIIIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IIIIIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IIIIVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIIIVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IIIIVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IIIIVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IIIIVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IIIIVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IIIIVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IIIIVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IIIIVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IIIVRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIIVRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IIIVRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IIIVRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IIIVRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IIIVRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IIIVRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IIIVRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IIIVRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IIIVIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIIVIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IIIVIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IIIVIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IIIVIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IIIVIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IIIVIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IIIVIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IIIVIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IIIVVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIIVVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IIIVVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IIIVVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IIIVVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IIIVVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IIIVVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IIIVVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IIIVVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IIVRRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIVRRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IIVRRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IIVRRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IIVRRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IIVRRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IIVRRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IIVRRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IIVRRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IIVRIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIVRIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IIVRIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IIVRIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IIVRIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IIVRIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IIVRIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IIVRIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IIVRIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IIVRVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIVRVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IIVRVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IIVRVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IIVRVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IIVRVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IIVRVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IIVRVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IIVRVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IIVIRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIVIRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IIVIRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IIVIRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IIVIRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IIVIRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IIVIRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IIVIRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IIVIRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IIVIIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIVIIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IIVIIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IIVIIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IIVIIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IIVIIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IIVIIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IIVIIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IIVIIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IIVIVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIVIVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IIVIVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IIVIVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IIVIVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IIVIVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IIVIVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IIVIVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IIVIVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IIVVRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIVVRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IIVVRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IIVVRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IIVVRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IIVVRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IIVVRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IIVVRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IIVVRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IIVVIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIVVIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IIVVIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IIVVIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IIVVIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IIVVIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IIVVIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IIVVIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IIVVIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IIVVVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IIVVVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IIVVVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IIVVVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IIVVVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IIVVVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IIVVVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IIVVVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IIVVVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IVRRRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVRRRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IVRRRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IVRRRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IVRRRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IVRRRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IVRRRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IVRRRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IVRRRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IVRRIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVRRIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IVRRIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IVRRIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IVRRIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IVRRIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IVRRIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IVRRIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IVRRIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IVRRVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVRRVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IVRRVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IVRRVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IVRRVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IVRRVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IVRRVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IVRRVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IVRRVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IVRIRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVRIRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IVRIRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IVRIRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IVRIRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IVRIRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IVRIRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IVRIRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IVRIRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IVRIIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVRIIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IVRIIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IVRIIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IVRIIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IVRIIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IVRIIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IVRIIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IVRIIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IVRIVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVRIVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IVRIVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IVRIVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IVRIVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IVRIVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IVRIVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IVRIVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IVRIVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IVRVRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVRVRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IVRVRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IVRVRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IVRVRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IVRVRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IVRVRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IVRVRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IVRVRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IVRVIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVRVIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IVRVIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IVRVIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IVRVIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IVRVIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IVRVIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IVRVIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IVRVIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IVRVVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVRVVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IVRVVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IVRVVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IVRVVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IVRVVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IVRVVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IVRVVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IVRVVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IVIRRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVIRRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IVIRRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IVIRRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IVIRRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IVIRRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IVIRRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IVIRRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IVIRRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IVIRIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVIRIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IVIRIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IVIRIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IVIRIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IVIRIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IVIRIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IVIRIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IVIRIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IVIRVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVIRVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IVIRVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IVIRVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IVIRVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IVIRVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IVIRVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IVIRVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IVIRVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IVIIRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVIIRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IVIIRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IVIIRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IVIIRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IVIIRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IVIIRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IVIIRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IVIIRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IVIIIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVIIIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IVIIIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IVIIIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IVIIIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IVIIIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IVIIIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IVIIIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IVIIIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IVIIVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVIIVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IVIIVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IVIIVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IVIIVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IVIIVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IVIIVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IVIIVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IVIIVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IVIVRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVIVRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IVIVRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IVIVRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IVIVRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IVIVRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IVIVRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IVIVRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IVIVRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IVIVIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVIVIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IVIVIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IVIVIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IVIVIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IVIVIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IVIVIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IVIVIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IVIVIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IVIVVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVIVVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IVIVVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IVIVVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IVIVVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IVIVVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IVIVVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IVIVVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IVIVVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IVVRRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVVRRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IVVRRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IVVRRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IVVRRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IVVRRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IVVRRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IVVRRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IVVRRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IVVRIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVVRIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IVVRIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IVVRIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IVVRIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IVVRIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IVVRIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IVVRIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IVVRIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IVVRVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVVRVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IVVRVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IVVRVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IVVRVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IVVRVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IVVRVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IVVRVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IVVRVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IVVIRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVVIRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IVVIRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IVVIRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IVVIRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IVVIRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IVVIRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IVVIRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IVVIRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IVVIIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVVIIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IVVIIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IVVIIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IVVIIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IVVIIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IVVIIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IVVIIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IVVIIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IVVIVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVVIVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IVVIVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IVVIVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IVVIVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IVVIVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IVVIVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IVVIVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IVVIVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void IVVVRRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVVVRRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void IVVVRRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void IVVVRIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void IVVVRII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void IVVVRIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void IVVVRVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void IVVVRVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void IVVVRVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void IVVVIRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVVVIRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void IVVVIRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void IVVVIIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void IVVVIII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void IVVVIIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void IVVVIVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void IVVVIVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void IVVVIVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void IVVVVRR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void IVVVVRI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void IVVVVRV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void IVVVVIR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void IVVVVII<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void IVVVVIV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void IVVVVVR<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void IVVVVVI<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void IVVVVVV<T0, T1, T2, T3, T4, T5, T6>(in T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VRRRRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRRRRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VRRRRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VRRRRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VRRRRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VRRRRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VRRRRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VRRRRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VRRRRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VRRRIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRRRIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VRRRIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VRRRIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VRRRIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VRRRIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VRRRIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VRRRIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VRRRIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VRRRVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRRRVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VRRRVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VRRRVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VRRRVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VRRRVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VRRRVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VRRRVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VRRRVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VRRIRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRRIRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VRRIRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VRRIRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VRRIRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VRRIRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VRRIRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VRRIRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VRRIRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VRRIIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRRIIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VRRIIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VRRIIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VRRIIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VRRIIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VRRIIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VRRIIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VRRIIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VRRIVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRRIVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VRRIVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VRRIVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VRRIVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VRRIVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VRRIVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VRRIVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VRRIVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VRRVRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRRVRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VRRVRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VRRVRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VRRVRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VRRVRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VRRVRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VRRVRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VRRVRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VRRVIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRRVIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VRRVIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VRRVIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VRRVIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VRRVIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VRRVIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VRRVIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VRRVIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VRRVVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRRVVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VRRVVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VRRVVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VRRVVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VRRVVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VRRVVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VRRVVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VRRVVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VRIRRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRIRRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VRIRRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VRIRRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VRIRRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VRIRRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VRIRRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VRIRRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VRIRRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VRIRIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRIRIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VRIRIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VRIRIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VRIRIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VRIRIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VRIRIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VRIRIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VRIRIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VRIRVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRIRVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VRIRVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VRIRVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VRIRVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VRIRVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VRIRVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VRIRVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VRIRVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VRIIRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRIIRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VRIIRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VRIIRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VRIIRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VRIIRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VRIIRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VRIIRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VRIIRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VRIIIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRIIIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VRIIIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VRIIIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VRIIIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VRIIIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VRIIIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VRIIIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VRIIIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VRIIVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRIIVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VRIIVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VRIIVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VRIIVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VRIIVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VRIIVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VRIIVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VRIIVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VRIVRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRIVRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VRIVRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VRIVRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VRIVRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VRIVRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VRIVRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VRIVRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VRIVRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VRIVIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRIVIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VRIVIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VRIVIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VRIVIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VRIVIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VRIVIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VRIVIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VRIVIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VRIVVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRIVVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VRIVVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VRIVVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VRIVVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VRIVVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VRIVVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VRIVVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VRIVVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VRVRRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRVRRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VRVRRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VRVRRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VRVRRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VRVRRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VRVRRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VRVRRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VRVRRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VRVRIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRVRIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VRVRIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VRVRIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VRVRIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VRVRIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VRVRIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VRVRIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VRVRIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VRVRVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRVRVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VRVRVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VRVRVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VRVRVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VRVRVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VRVRVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VRVRVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VRVRVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VRVIRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRVIRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VRVIRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VRVIRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VRVIRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VRVIRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VRVIRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VRVIRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VRVIRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VRVIIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRVIIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VRVIIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VRVIIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VRVIIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VRVIIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VRVIIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VRVIIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VRVIIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VRVIVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRVIVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VRVIVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VRVIVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VRVIVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VRVIVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VRVIVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VRVIVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VRVIVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VRVVRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRVVRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VRVVRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VRVVRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VRVVRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VRVVRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VRVVRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VRVVRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VRVVRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VRVVIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRVVIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VRVVIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VRVVIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VRVVIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VRVVIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VRVVIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VRVVIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VRVVIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VRVVVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VRVVVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VRVVVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VRVVVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VRVVVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VRVVVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VRVVVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VRVVVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VRVVVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, ref T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VIRRRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIRRRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VIRRRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VIRRRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VIRRRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VIRRRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VIRRRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VIRRRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VIRRRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VIRRIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIRRIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VIRRIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VIRRIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VIRRIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VIRRIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VIRRIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VIRRIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VIRRIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VIRRVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIRRVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VIRRVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VIRRVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VIRRVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VIRRVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VIRRVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VIRRVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VIRRVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VIRIRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIRIRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VIRIRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VIRIRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VIRIRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VIRIRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VIRIRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VIRIRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VIRIRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VIRIIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIRIIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VIRIIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VIRIIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VIRIIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VIRIIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VIRIIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VIRIIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VIRIIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VIRIVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIRIVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VIRIVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VIRIVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VIRIVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VIRIVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VIRIVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VIRIVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VIRIVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VIRVRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIRVRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VIRVRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VIRVRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VIRVRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VIRVRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VIRVRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VIRVRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VIRVRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VIRVIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIRVIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VIRVIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VIRVIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VIRVIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VIRVIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VIRVIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VIRVIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VIRVIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VIRVVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIRVVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VIRVVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VIRVVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VIRVVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VIRVVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VIRVVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VIRVVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VIRVVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VIIRRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIIRRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VIIRRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VIIRRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VIIRRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VIIRRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VIIRRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VIIRRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VIIRRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VIIRIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIIRIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VIIRIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VIIRIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VIIRIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VIIRIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VIIRIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VIIRIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VIIRIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VIIRVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIIRVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VIIRVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VIIRVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VIIRVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VIIRVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VIIRVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VIIRVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VIIRVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VIIIRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIIIRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VIIIRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VIIIRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VIIIRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VIIIRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VIIIRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VIIIRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VIIIRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VIIIIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIIIIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VIIIIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VIIIIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VIIIIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VIIIIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VIIIIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VIIIIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VIIIIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VIIIVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIIIVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VIIIVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VIIIVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VIIIVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VIIIVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VIIIVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VIIIVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VIIIVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VIIVRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIIVRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VIIVRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VIIVRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VIIVRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VIIVRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VIIVRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VIIVRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VIIVRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VIIVIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIIVIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VIIVIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VIIVIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VIIVIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VIIVIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VIIVIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VIIVIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VIIVIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VIIVVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIIVVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VIIVVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VIIVVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VIIVVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VIIVVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VIIVVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VIIVVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VIIVVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VIVRRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIVRRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VIVRRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VIVRRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VIVRRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VIVRRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VIVRRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VIVRRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VIVRRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VIVRIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIVRIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VIVRIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VIVRIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VIVRIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VIVRIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VIVRIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VIVRIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VIVRIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VIVRVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIVRVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VIVRVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VIVRVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VIVRVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VIVRVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VIVRVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VIVRVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VIVRVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VIVIRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIVIRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VIVIRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VIVIRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VIVIRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VIVIRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VIVIRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VIVIRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VIVIRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VIVIIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIVIIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VIVIIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VIVIIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VIVIIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VIVIIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VIVIIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VIVIIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VIVIIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VIVIVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIVIVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VIVIVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VIVIVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VIVIVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VIVIVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VIVIVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VIVIVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VIVIVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VIVVRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIVVRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VIVVRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VIVVRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VIVVRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VIVVRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VIVVRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VIVVRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VIVVRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VIVVIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIVVIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VIVVIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VIVVIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VIVVIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VIVVIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VIVVIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VIVVIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VIVVIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VIVVVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VIVVVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VIVVVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VIVVVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VIVVVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VIVVVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VIVVVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VIVVVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VIVVVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, in T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VVRRRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVRRRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VVRRRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VVRRRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VVRRRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VVRRRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VVRRRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VVRRRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VVRRRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VVRRIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVRRIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VVRRIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VVRRIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VVRRIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VVRRIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VVRRIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VVRRIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VVRRIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VVRRVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVRRVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VVRRVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VVRRVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VVRRVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VVRRVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VVRRVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VVRRVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VVRRVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VVRIRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVRIRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VVRIRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VVRIRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VVRIRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VVRIRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VVRIRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VVRIRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VVRIRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VVRIIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVRIIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VVRIIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VVRIIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VVRIIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VVRIIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VVRIIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VVRIIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VVRIIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VVRIVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVRIVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VVRIVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VVRIVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VVRIVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VVRIVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VVRIVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VVRIVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VVRIVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VVRVRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVRVRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VVRVRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VVRVRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VVRVRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VVRVRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VVRVRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VVRVRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VVRVRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VVRVIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVRVIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VVRVIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VVRVIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VVRVIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VVRVIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VVRVIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VVRVIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VVRVIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VVRVVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVRVVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VVRVVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VVRVVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VVRVVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VVRVVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VVRVVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VVRVVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VVRVVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, ref T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VVIRRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVIRRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VVIRRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VVIRRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VVIRRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VVIRRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VVIRRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VVIRRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VVIRRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VVIRIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVIRIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VVIRIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VVIRIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VVIRIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VVIRIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VVIRIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VVIRIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VVIRIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VVIRVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVIRVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VVIRVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VVIRVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VVIRVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VVIRVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VVIRVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VVIRVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VVIRVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VVIIRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVIIRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VVIIRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VVIIRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VVIIRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VVIIRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VVIIRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VVIIRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VVIIRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VVIIIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVIIIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VVIIIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VVIIIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VVIIIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VVIIIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VVIIIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VVIIIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VVIIIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VVIIVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVIIVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VVIIVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VVIIVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VVIIVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VVIIVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VVIIVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VVIIVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VVIIVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VVIVRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVIVRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VVIVRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VVIVRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VVIVRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VVIVRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VVIVRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VVIVRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VVIVRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VVIVIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVIVIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VVIVIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VVIVIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VVIVIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VVIVIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VVIVIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VVIVIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VVIVIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VVIVVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVIVVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VVIVVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VVIVVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VVIVVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VVIVVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VVIVVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VVIVVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VVIVVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, in T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VVVRRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVVRRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VVVRRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VVVRRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VVVRRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VVVRRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VVVRRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VVVRRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VVVRRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VVVRIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVVRIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VVVRIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VVVRIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VVVRIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VVVRIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VVVRIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VVVRIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VVVRIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VVVRVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVVRVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VVVRVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VVVRVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VVVRVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VVVRVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VVVRVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VVVRVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VVVRVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, ref T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VVVIRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVVIRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VVVIRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VVVIRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VVVIRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VVVIRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VVVIRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VVVIRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VVVIRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VVVIIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVVIIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VVVIIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VVVIIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VVVIIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VVVIIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VVVIIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VVVIIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VVVIIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VVVIVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVVIVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VVVIVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VVVIVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VVVIVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VVVIVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VVVIVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VVVIVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VVVIVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, in T3 t3, T4 t4, T5 t5, T6 t6);
public delegate void VVVVRRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVVVRRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, in T6 t6);
public delegate void VVVVRRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, ref T5 t5, T6 t6);
public delegate void VVVVRIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, ref T6 t6);
public delegate void VVVVRII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, in T6 t6);
public delegate void VVVVRIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, in T5 t5, T6 t6);
public delegate void VVVVRVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, ref T6 t6);
public delegate void VVVVRVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, in T6 t6);
public delegate void VVVVRVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, ref T4 t4, T5 t5, T6 t6);
public delegate void VVVVIRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVVVIRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, in T6 t6);
public delegate void VVVVIRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, ref T5 t5, T6 t6);
public delegate void VVVVIIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, ref T6 t6);
public delegate void VVVVIII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, in T6 t6);
public delegate void VVVVIIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, in T5 t5, T6 t6);
public delegate void VVVVIVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, ref T6 t6);
public delegate void VVVVIVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, in T6 t6);
public delegate void VVVVIVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, in T4 t4, T5 t5, T6 t6);
public delegate void VVVVVRR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, ref T6 t6);
public delegate void VVVVVRI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, in T6 t6);
public delegate void VVVVVRV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, ref T5 t5, T6 t6);
public delegate void VVVVVIR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, ref T6 t6);
public delegate void VVVVVII<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, in T6 t6);
public delegate void VVVVVIV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, in T5 t5, T6 t6);
public delegate void VVVVVVR<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, ref T6 t6);
public delegate void VVVVVVI<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, in T6 t6);
public delegate void VVVVVVV<T0, T1, T2, T3, T4, T5, T6>(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
}
namespace Unity.Entities
{
using Unity.Entities.UniversalDelegates;
using Unity.Jobs;
using Unity.Entities.CodeGeneratedJobForEach;
public static partial class LambdaForEachDescriptionConstructionMethods
{
public static JobHandle WithCode<T0>(this LambdaForEachDescription description, R<T0> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0>(this LambdaForEachDescription description, I<T0> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0>(this LambdaForEachDescription description, V<T0> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1>(this LambdaForEachDescription description, RR<T0, T1> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1>(this LambdaForEachDescription description, RI<T0, T1> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1>(this LambdaForEachDescription description, RV<T0, T1> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1>(this LambdaForEachDescription description, IR<T0, T1> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1>(this LambdaForEachDescription description, II<T0, T1> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1>(this LambdaForEachDescription description, IV<T0, T1> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1>(this LambdaForEachDescription description, VR<T0, T1> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1>(this LambdaForEachDescription description, VI<T0, T1> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1>(this LambdaForEachDescription description, VV<T0, T1> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, RRR<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, RRI<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, RRV<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, RIR<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, RII<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, RIV<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, RVR<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, RVI<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, RVV<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, IRR<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, IRI<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, IRV<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, IIR<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, III<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, IIV<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, IVR<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, IVI<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, IVV<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, VRR<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, VRI<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, VRV<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, VIR<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, VII<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, VIV<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, VVR<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, VVI<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2>(this LambdaForEachDescription description, VVV<T0, T1, T2> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RRRR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RRRI<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RRRV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RRIR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RRII<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RRIV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RRVR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RRVI<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RRVV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RIRR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RIRI<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RIRV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RIIR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RIII<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RIIV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RIVR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RIVI<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RIVV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RVRR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RVRI<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RVRV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RVIR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RVII<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RVIV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RVVR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RVVI<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, RVVV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IRRR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IRRI<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IRRV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IRIR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IRII<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IRIV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IRVR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IRVI<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IRVV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IIRR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IIRI<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IIRV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IIIR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IIII<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IIIV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IIVR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IIVI<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IIVV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IVRR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IVRI<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IVRV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IVIR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IVII<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IVIV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IVVR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IVVI<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, IVVV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VRRR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VRRI<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VRRV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VRIR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VRII<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VRIV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VRVR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VRVI<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VRVV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VIRR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VIRI<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VIRV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VIIR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VIII<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VIIV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VIVR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VIVI<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VIVV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VVRR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VVRI<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VVRV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VVIR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VVII<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VVIV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VVVR<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VVVI<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3>(this LambdaForEachDescription description, VVVV<T0, T1, T2, T3> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRRRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRRRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRRRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRRIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRRII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRRIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRRVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRRVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRRVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRIRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRIRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRIRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRIIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRIII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRIIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRIVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRIVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRIVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRVRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRVRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRVRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRVIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRVII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRVIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRVVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRVVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RRVVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIRRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIRRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIRRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIRIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIRII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIRIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIRVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIRVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIRVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIIRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIIRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIIRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIIIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIIII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIIIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIIVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIIVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIIVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIVRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIVRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIVRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIVIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIVII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIVIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIVVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIVVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RIVVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVRRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVRRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVRRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVRIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVRII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVRIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVRVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVRVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVRVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVIRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVIRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVIRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVIIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVIII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVIIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVIVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVIVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVIVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVVRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVVRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVVRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVVIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVVII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVVIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVVVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVVVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, RVVVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRRRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRRRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRRRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRRIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRRII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRRIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRRVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRRVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRRVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRIRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRIRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRIRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRIIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRIII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRIIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRIVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRIVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRIVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRVRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRVRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRVRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRVIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRVII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRVIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRVVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRVVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IRVVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIRRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIRRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIRRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIRIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIRII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIRIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIRVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIRVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIRVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIIRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIIRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIIRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIIIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIIII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIIIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIIVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIIVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIIVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIVRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIVRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIVRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIVIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIVII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIVIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIVVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIVVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IIVVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVRRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVRRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVRRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVRIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVRII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVRIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVRVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVRVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVRVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVIRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVIRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVIRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVIIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVIII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVIIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVIVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVIVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVIVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVVRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVVRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVVRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVVIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVVII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVVIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVVVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVVVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, IVVVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRRRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRRRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRRRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRRIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRRII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRRIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRRVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRRVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRRVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRIRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRIRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRIRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRIIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRIII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRIIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRIVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRIVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRIVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRVRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRVRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRVRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRVIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRVII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRVIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRVVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRVVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VRVVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIRRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIRRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIRRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIRIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIRII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIRIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIRVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIRVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIRVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIIRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIIRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIIRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIIIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIIII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIIIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIIVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIIVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIIVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIVRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIVRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIVRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIVIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIVII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIVIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIVVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIVVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VIVVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVRRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVRRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVRRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVRIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVRII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVRIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVRVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVRVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVRVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVIRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVIRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVIRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVIIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVIII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVIIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVIVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVIVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVIVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVVRR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVVRI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVVRV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVVIR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVVII<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVVIV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVVVR<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVVVI<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4>(this LambdaForEachDescription description, VVVVV<T0, T1, T2, T3, T4> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRRVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRIVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RRVVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIRVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIIVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RIVVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVRVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVIVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, RVVVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRRVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRIVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IRVVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIRVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIIVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IIVVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVRVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVIVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, IVVVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRRVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRIVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VRVVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIRVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIIVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VIVVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVRVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVIVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVRRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVRRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVRRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVRIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVRII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVRIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVRVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVRVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVRVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVIRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVIRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVIRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVIIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVIII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVIIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVIVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVIVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVIVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVVRR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVVRI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVVRV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVVIR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVVII<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVVIV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVVVR<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVVVI<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5>(this LambdaForEachDescription description, VVVVVV<T0, T1, T2, T3, T4, T5> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRRVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRIVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RRVVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIRVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIIVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RIVVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVRVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVIVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, RVVVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRRVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRIVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IRVVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIRVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIIVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IIVVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVRVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVIVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, IVVVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRRVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRIVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VRVVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRRVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRIVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVVIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVVVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVVVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIRVVVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRRRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRRRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRRRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRRIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRRII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRRIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRRVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRRVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRRVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRIRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRIRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRIRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRIIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRIII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRIIV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRIVR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRIVI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRIVV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRVRR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRVRI<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRVRV<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRVIR<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4, T5, T6>(this LambdaForEachDescription description, VIIRVII<T0, T1, T2, T3, T4, T5, T6> codeToRun) => ThrowCodeGenException();
public static JobHandle WithCode<T0, T1, T2, T3, T4,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment