using System; using System.Runtime.InteropServices; namespace Ryujinx.Common.Memory { public struct Array1 : IArray where T : unmanaged { T _e0; public int Length => 1; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 1); } public struct Array2 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array1 _other; #pragma warning restore CS0169 public int Length => 2; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 2); } public struct Array3 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array2 _other; #pragma warning restore CS0169 public int Length => 3; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 3); } public struct Array4 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array3 _other; #pragma warning restore CS0169 public int Length => 4; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 4); } public struct Array5 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array4 _other; #pragma warning restore CS0169 public int Length => 5; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 5); } public struct Array6 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array5 _other; #pragma warning restore CS0169 public int Length => 6; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 6); } public struct Array7 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array6 _other; #pragma warning restore CS0169 public int Length => 7; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 7); } public struct Array8 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array7 _other; #pragma warning restore CS0169 public int Length => 8; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 8); } public struct Array9 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array8 _other; #pragma warning restore CS0169 public int Length => 9; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 9); } public struct Array10 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array9 _other; #pragma warning restore CS0169 public int Length => 10; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 10); } public struct Array11 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array10 _other; #pragma warning restore CS0169 public int Length => 11; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 11); } public struct Array12 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array11 _other; #pragma warning restore CS0169 public int Length => 12; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 12); } public struct Array13 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array12 _other; #pragma warning restore CS0169 public int Length => 13; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 13); } public struct Array14 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array13 _other; #pragma warning restore CS0169 public int Length => 14; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 14); } public struct Array15 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array14 _other; #pragma warning restore CS0169 public int Length => 15; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 15); } public struct Array16 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array15 _other; #pragma warning restore CS0169 public int Length => 16; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 16); } public struct Array17 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array16 _other; #pragma warning restore CS0169 public int Length => 17; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 17); } public struct Array18 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array17 _other; #pragma warning restore CS0169 public int Length => 18; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 18); } public struct Array19 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array18 _other; #pragma warning restore CS0169 public int Length => 19; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 19); } public struct Array20 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array19 _other; #pragma warning restore CS0169 public int Length => 20; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 20); } public struct Array21 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array20 _other; #pragma warning restore CS0169 public int Length => 21; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 21); } public struct Array22 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array21 _other; #pragma warning restore CS0169 public int Length => 22; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 22); } public struct Array23 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array22 _other; #pragma warning restore CS0169 public int Length => 23; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 23); } public struct Array24 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array23 _other; #pragma warning restore CS0169 public int Length => 24; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 24); } public struct Array25 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array24 _other; #pragma warning restore CS0169 public int Length => 25; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 25); } public struct Array26 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array25 _other; #pragma warning restore CS0169 public int Length => 26; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 26); } public struct Array27 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array26 _other; #pragma warning restore CS0169 public int Length => 27; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 27); } public struct Array28 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array27 _other; #pragma warning restore CS0169 public int Length => 28; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 28); } public struct Array29 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array28 _other; #pragma warning restore CS0169 public int Length => 29; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 29); } public struct Array30 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array29 _other; #pragma warning restore CS0169 public int Length => 30; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 30); } public struct Array31 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array30 _other; #pragma warning restore CS0169 public int Length => 31; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 31); } public struct Array32 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array31 _other; #pragma warning restore CS0169 public int Length => 32; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 32); } public struct Array33 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array32 _other; #pragma warning restore CS0169 public int Length => 33; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 33); } public struct Array34 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array33 _other; #pragma warning restore CS0169 public int Length => 34; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 34); } public struct Array35 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array34 _other; #pragma warning restore CS0169 public int Length => 35; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 35); } public struct Array36 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array35 _other; #pragma warning restore CS0169 public int Length => 36; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 36); } public struct Array37 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array36 _other; #pragma warning restore CS0169 public int Length => 37; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 37); } public struct Array38 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array37 _other; #pragma warning restore CS0169 public int Length => 38; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 38); } public struct Array39 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array38 _other; #pragma warning restore CS0169 public int Length => 39; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 39); } public struct Array40 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array39 _other; #pragma warning restore CS0169 public int Length => 40; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 40); } public struct Array41 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array40 _other; #pragma warning restore CS0169 public int Length => 41; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 41); } public struct Array42 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array41 _other; #pragma warning restore CS0169 public int Length => 42; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 42); } public struct Array43 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array42 _other; #pragma warning restore CS0169 public int Length => 43; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 43); } public struct Array44 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array43 _other; #pragma warning restore CS0169 public int Length => 44; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 44); } public struct Array45 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array44 _other; #pragma warning restore CS0169 public int Length => 45; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 45); } public struct Array46 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array45 _other; #pragma warning restore CS0169 public int Length => 46; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 46); } public struct Array47 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array46 _other; #pragma warning restore CS0169 public int Length => 47; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 47); } public struct Array48 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array47 _other; #pragma warning restore CS0169 public int Length => 48; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 48); } public struct Array49 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array48 _other; #pragma warning restore CS0169 public int Length => 49; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 49); } public struct Array50 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array49 _other; #pragma warning restore CS0169 public int Length => 50; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 50); } public struct Array51 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array50 _other; #pragma warning restore CS0169 public int Length => 51; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 51); } public struct Array52 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array51 _other; #pragma warning restore CS0169 public int Length => 52; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 52); } public struct Array53 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array52 _other; #pragma warning restore CS0169 public int Length => 53; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 53); } public struct Array54 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array53 _other; #pragma warning restore CS0169 public int Length => 54; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 54); } public struct Array55 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array54 _other; #pragma warning restore CS0169 public int Length => 55; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 55); } public struct Array56 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array55 _other; #pragma warning restore CS0169 public int Length => 56; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 56); } public struct Array57 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array56 _other; #pragma warning restore CS0169 public int Length => 57; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 57); } public struct Array58 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array57 _other; #pragma warning restore CS0169 public int Length => 58; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 58); } public struct Array59 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array58 _other; #pragma warning restore CS0169 public int Length => 59; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 59); } public struct Array60 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array59 _other; #pragma warning restore CS0169 public int Length => 60; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 60); } public struct Array61 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array60 _other; #pragma warning restore CS0169 public int Length => 61; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 61); } public struct Array62 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array61 _other; #pragma warning restore CS0169 public int Length => 62; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 62); } public struct Array63 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array62 _other; #pragma warning restore CS0169 public int Length => 63; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 63); } public struct Array64 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array63 _other; #pragma warning restore CS0169 public int Length => 64; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 64); } public struct Array65 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array64 _other; #pragma warning restore CS0169 public int Length => 65; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 65); } public struct Array66 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array65 _other; #pragma warning restore CS0169 public int Length => 66; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 66); } public struct Array67 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array66 _other; #pragma warning restore CS0169 public int Length => 67; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 67); } public struct Array68 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array67 _other; #pragma warning restore CS0169 public int Length => 68; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 68); } public struct Array69 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array68 _other; #pragma warning restore CS0169 public int Length => 69; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 69); } public struct Array70 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array69 _other; #pragma warning restore CS0169 public int Length => 70; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 70); } public struct Array71 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array70 _other; #pragma warning restore CS0169 public int Length => 71; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 71); } public struct Array72 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array71 _other; #pragma warning restore CS0169 public int Length => 72; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 72); } public struct Array73 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array72 _other; #pragma warning restore CS0169 public int Length => 73; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 73); } public struct Array74 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array73 _other; #pragma warning restore CS0169 public int Length => 74; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 74); } public struct Array75 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array74 _other; #pragma warning restore CS0169 public int Length => 75; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 75); } public struct Array76 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array75 _other; #pragma warning restore CS0169 public int Length => 76; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 76); } public struct Array77 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array76 _other; #pragma warning restore CS0169 public int Length => 77; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 77); } public struct Array78 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array77 _other; #pragma warning restore CS0169 public int Length => 78; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 78); } public struct Array79 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array78 _other; #pragma warning restore CS0169 public int Length => 79; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 79); } public struct Array80 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array79 _other; #pragma warning restore CS0169 public int Length => 80; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 80); } public struct Array81 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array80 _other; #pragma warning restore CS0169 public int Length => 81; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 81); } public struct Array82 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array81 _other; #pragma warning restore CS0169 public int Length => 82; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 82); } public struct Array83 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array82 _other; #pragma warning restore CS0169 public int Length => 83; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 83); } public struct Array84 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array83 _other; #pragma warning restore CS0169 public int Length => 84; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 84); } public struct Array85 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array84 _other; #pragma warning restore CS0169 public int Length => 85; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 85); } public struct Array86 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array85 _other; #pragma warning restore CS0169 public int Length => 86; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 86); } public struct Array87 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array86 _other; #pragma warning restore CS0169 public int Length => 87; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 87); } public struct Array88 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array87 _other; #pragma warning restore CS0169 public int Length => 88; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 88); } public struct Array89 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array88 _other; #pragma warning restore CS0169 public int Length => 89; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 89); } public struct Array90 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array89 _other; #pragma warning restore CS0169 public int Length => 90; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 90); } public struct Array91 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array90 _other; #pragma warning restore CS0169 public int Length => 91; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 91); } public struct Array92 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array91 _other; #pragma warning restore CS0169 public int Length => 92; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 92); } public struct Array93 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array92 _other; #pragma warning restore CS0169 public int Length => 93; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 93); } public struct Array94 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array93 _other; #pragma warning restore CS0169 public int Length => 94; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 94); } public struct Array95 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array94 _other; #pragma warning restore CS0169 public int Length => 95; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 95); } public struct Array96 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array95 _other; #pragma warning restore CS0169 public int Length => 96; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 96); } public struct Array97 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array96 _other; #pragma warning restore CS0169 public int Length => 97; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 97); } public struct Array98 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array97 _other; #pragma warning restore CS0169 public int Length => 98; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 98); } public struct Array99 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array98 _other; #pragma warning restore CS0169 public int Length => 99; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 99); } public struct Array100 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array99 _other; #pragma warning restore CS0169 public int Length => 100; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 100); } public struct Array101 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array100 _other; #pragma warning restore CS0169 public int Length => 101; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 101); } public struct Array102 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array101 _other; #pragma warning restore CS0169 public int Length => 102; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 102); } public struct Array103 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array102 _other; #pragma warning restore CS0169 public int Length => 103; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 103); } public struct Array104 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array103 _other; #pragma warning restore CS0169 public int Length => 104; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 104); } public struct Array105 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array104 _other; #pragma warning restore CS0169 public int Length => 105; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 105); } public struct Array106 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array105 _other; #pragma warning restore CS0169 public int Length => 106; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 106); } public struct Array107 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array106 _other; #pragma warning restore CS0169 public int Length => 107; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 107); } public struct Array108 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array107 _other; #pragma warning restore CS0169 public int Length => 108; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 108); } public struct Array109 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array108 _other; #pragma warning restore CS0169 public int Length => 109; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 109); } public struct Array110 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array109 _other; #pragma warning restore CS0169 public int Length => 110; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 110); } public struct Array111 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array110 _other; #pragma warning restore CS0169 public int Length => 111; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 111); } public struct Array112 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array111 _other; #pragma warning restore CS0169 public int Length => 112; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 112); } public struct Array113 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array112 _other; #pragma warning restore CS0169 public int Length => 113; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 113); } public struct Array114 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array113 _other; #pragma warning restore CS0169 public int Length => 114; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 114); } public struct Array115 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array114 _other; #pragma warning restore CS0169 public int Length => 115; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 115); } public struct Array116 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array115 _other; #pragma warning restore CS0169 public int Length => 116; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 116); } public struct Array117 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array116 _other; #pragma warning restore CS0169 public int Length => 117; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 117); } public struct Array118 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array117 _other; #pragma warning restore CS0169 public int Length => 118; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 118); } public struct Array119 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array118 _other; #pragma warning restore CS0169 public int Length => 119; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 119); } public struct Array120 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array119 _other; #pragma warning restore CS0169 public int Length => 120; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 120); } public struct Array121 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array120 _other; #pragma warning restore CS0169 public int Length => 121; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 121); } public struct Array122 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array121 _other; #pragma warning restore CS0169 public int Length => 122; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 122); } public struct Array123 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array122 _other; #pragma warning restore CS0169 public int Length => 123; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 123); } public struct Array124 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array123 _other; #pragma warning restore CS0169 public int Length => 124; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 124); } public struct Array125 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array124 _other; #pragma warning restore CS0169 public int Length => 125; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 125); } public struct Array126 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array125 _other; #pragma warning restore CS0169 public int Length => 126; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 126); } public struct Array127 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array126 _other; #pragma warning restore CS0169 public int Length => 127; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 127); } public struct Array128 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array127 _other; #pragma warning restore CS0169 public int Length => 128; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 128); } public struct Array129 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array128 _other; #pragma warning restore CS0169 public int Length => 129; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 129); } public struct Array130 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array129 _other; #pragma warning restore CS0169 public int Length => 130; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 130); } public struct Array131 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array130 _other; #pragma warning restore CS0169 public int Length => 131; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 131); } public struct Array132 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array131 _other; #pragma warning restore CS0169 public int Length => 132; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 132); } public struct Array133 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array132 _other; #pragma warning restore CS0169 public int Length => 133; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 133); } public struct Array134 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array133 _other; #pragma warning restore CS0169 public int Length => 134; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 134); } public struct Array135 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array134 _other; #pragma warning restore CS0169 public int Length => 135; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 135); } public struct Array136 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array135 _other; #pragma warning restore CS0169 public int Length => 136; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 136); } public struct Array137 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array136 _other; #pragma warning restore CS0169 public int Length => 137; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 137); } public struct Array138 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array137 _other; #pragma warning restore CS0169 public int Length => 138; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 138); } public struct Array139 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array138 _other; #pragma warning restore CS0169 public int Length => 139; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 139); } public struct Array140 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array139 _other; #pragma warning restore CS0169 public int Length => 140; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 140); } public struct Array141 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array140 _other; #pragma warning restore CS0169 public int Length => 141; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 141); } public struct Array142 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array141 _other; #pragma warning restore CS0169 public int Length => 142; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 142); } public struct Array143 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array142 _other; #pragma warning restore CS0169 public int Length => 143; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 143); } public struct Array144 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array143 _other; #pragma warning restore CS0169 public int Length => 144; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 144); } public struct Array145 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array144 _other; #pragma warning restore CS0169 public int Length => 145; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 145); } public struct Array146 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array145 _other; #pragma warning restore CS0169 public int Length => 146; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 146); } public struct Array147 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array146 _other; #pragma warning restore CS0169 public int Length => 147; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 147); } public struct Array148 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array147 _other; #pragma warning restore CS0169 public int Length => 148; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 148); } public struct Array149 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array148 _other; #pragma warning restore CS0169 public int Length => 149; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 149); } public struct Array150 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array149 _other; #pragma warning restore CS0169 public int Length => 150; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 150); } public struct Array151 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array150 _other; #pragma warning restore CS0169 public int Length => 151; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 151); } public struct Array152 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array151 _other; #pragma warning restore CS0169 public int Length => 152; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 152); } public struct Array153 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array152 _other; #pragma warning restore CS0169 public int Length => 153; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 153); } public struct Array154 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array153 _other; #pragma warning restore CS0169 public int Length => 154; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 154); } public struct Array155 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array154 _other; #pragma warning restore CS0169 public int Length => 155; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 155); } public struct Array156 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array155 _other; #pragma warning restore CS0169 public int Length => 156; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 156); } public struct Array157 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array156 _other; #pragma warning restore CS0169 public int Length => 157; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 157); } public struct Array158 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array157 _other; #pragma warning restore CS0169 public int Length => 158; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 158); } public struct Array159 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array158 _other; #pragma warning restore CS0169 public int Length => 159; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 159); } public struct Array160 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array159 _other; #pragma warning restore CS0169 public int Length => 160; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 160); } public struct Array161 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array160 _other; #pragma warning restore CS0169 public int Length => 161; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 161); } public struct Array162 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array161 _other; #pragma warning restore CS0169 public int Length => 162; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 162); } public struct Array163 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array162 _other; #pragma warning restore CS0169 public int Length => 163; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 163); } public struct Array164 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array163 _other; #pragma warning restore CS0169 public int Length => 164; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 164); } public struct Array165 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array164 _other; #pragma warning restore CS0169 public int Length => 165; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 165); } public struct Array166 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array165 _other; #pragma warning restore CS0169 public int Length => 166; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 166); } public struct Array167 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array166 _other; #pragma warning restore CS0169 public int Length => 167; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 167); } public struct Array168 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array167 _other; #pragma warning restore CS0169 public int Length => 168; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 168); } public struct Array169 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array168 _other; #pragma warning restore CS0169 public int Length => 169; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 169); } public struct Array170 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array169 _other; #pragma warning restore CS0169 public int Length => 170; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 170); } public struct Array171 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array170 _other; #pragma warning restore CS0169 public int Length => 171; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 171); } public struct Array172 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array171 _other; #pragma warning restore CS0169 public int Length => 172; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 172); } public struct Array173 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array172 _other; #pragma warning restore CS0169 public int Length => 173; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 173); } public struct Array174 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array173 _other; #pragma warning restore CS0169 public int Length => 174; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 174); } public struct Array175 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array174 _other; #pragma warning restore CS0169 public int Length => 175; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 175); } public struct Array176 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array175 _other; #pragma warning restore CS0169 public int Length => 176; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 176); } public struct Array177 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array176 _other; #pragma warning restore CS0169 public int Length => 177; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 177); } public struct Array178 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array177 _other; #pragma warning restore CS0169 public int Length => 178; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 178); } public struct Array179 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array178 _other; #pragma warning restore CS0169 public int Length => 179; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 179); } public struct Array180 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array179 _other; #pragma warning restore CS0169 public int Length => 180; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 180); } public struct Array181 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array180 _other; #pragma warning restore CS0169 public int Length => 181; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 181); } public struct Array182 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array181 _other; #pragma warning restore CS0169 public int Length => 182; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 182); } public struct Array183 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array182 _other; #pragma warning restore CS0169 public int Length => 183; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 183); } public struct Array184 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array183 _other; #pragma warning restore CS0169 public int Length => 184; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 184); } public struct Array185 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array184 _other; #pragma warning restore CS0169 public int Length => 185; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 185); } public struct Array186 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array185 _other; #pragma warning restore CS0169 public int Length => 186; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 186); } public struct Array187 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array186 _other; #pragma warning restore CS0169 public int Length => 187; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 187); } public struct Array188 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array187 _other; #pragma warning restore CS0169 public int Length => 188; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 188); } public struct Array189 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array188 _other; #pragma warning restore CS0169 public int Length => 189; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 189); } public struct Array190 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array189 _other; #pragma warning restore CS0169 public int Length => 190; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 190); } public struct Array191 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array190 _other; #pragma warning restore CS0169 public int Length => 191; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 191); } public struct Array192 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array191 _other; #pragma warning restore CS0169 public int Length => 192; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 192); } public struct Array193 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array192 _other; #pragma warning restore CS0169 public int Length => 193; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 193); } public struct Array194 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array193 _other; #pragma warning restore CS0169 public int Length => 194; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 194); } public struct Array195 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array194 _other; #pragma warning restore CS0169 public int Length => 195; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 195); } public struct Array196 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array195 _other; #pragma warning restore CS0169 public int Length => 196; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 196); } public struct Array197 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array196 _other; #pragma warning restore CS0169 public int Length => 197; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 197); } public struct Array198 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array197 _other; #pragma warning restore CS0169 public int Length => 198; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 198); } public struct Array199 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array198 _other; #pragma warning restore CS0169 public int Length => 199; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 199); } public struct Array200 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array199 _other; #pragma warning restore CS0169 public int Length => 200; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 200); } public struct Array201 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array200 _other; #pragma warning restore CS0169 public int Length => 201; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 201); } public struct Array202 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array201 _other; #pragma warning restore CS0169 public int Length => 202; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 202); } public struct Array203 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array202 _other; #pragma warning restore CS0169 public int Length => 203; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 203); } public struct Array204 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array203 _other; #pragma warning restore CS0169 public int Length => 204; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 204); } public struct Array205 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array204 _other; #pragma warning restore CS0169 public int Length => 205; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 205); } public struct Array206 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array205 _other; #pragma warning restore CS0169 public int Length => 206; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 206); } public struct Array207 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array206 _other; #pragma warning restore CS0169 public int Length => 207; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 207); } public struct Array208 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array207 _other; #pragma warning restore CS0169 public int Length => 208; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 208); } public struct Array209 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array208 _other; #pragma warning restore CS0169 public int Length => 209; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 209); } public struct Array210 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array209 _other; #pragma warning restore CS0169 public int Length => 210; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 210); } public struct Array211 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array210 _other; #pragma warning restore CS0169 public int Length => 211; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 211); } public struct Array212 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array211 _other; #pragma warning restore CS0169 public int Length => 212; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 212); } public struct Array213 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array212 _other; #pragma warning restore CS0169 public int Length => 213; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 213); } public struct Array214 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array213 _other; #pragma warning restore CS0169 public int Length => 214; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 214); } public struct Array215 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array214 _other; #pragma warning restore CS0169 public int Length => 215; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 215); } public struct Array216 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array215 _other; #pragma warning restore CS0169 public int Length => 216; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 216); } public struct Array217 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array216 _other; #pragma warning restore CS0169 public int Length => 217; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 217); } public struct Array218 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array217 _other; #pragma warning restore CS0169 public int Length => 218; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 218); } public struct Array219 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array218 _other; #pragma warning restore CS0169 public int Length => 219; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 219); } public struct Array220 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array219 _other; #pragma warning restore CS0169 public int Length => 220; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 220); } public struct Array221 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array220 _other; #pragma warning restore CS0169 public int Length => 221; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 221); } public struct Array222 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array221 _other; #pragma warning restore CS0169 public int Length => 222; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 222); } public struct Array223 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array222 _other; #pragma warning restore CS0169 public int Length => 223; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 223); } public struct Array224 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array223 _other; #pragma warning restore CS0169 public int Length => 224; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 224); } public struct Array225 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array224 _other; #pragma warning restore CS0169 public int Length => 225; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 225); } public struct Array226 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array225 _other; #pragma warning restore CS0169 public int Length => 226; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 226); } public struct Array227 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array226 _other; #pragma warning restore CS0169 public int Length => 227; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 227); } public struct Array228 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array227 _other; #pragma warning restore CS0169 public int Length => 228; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 228); } public struct Array229 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array228 _other; #pragma warning restore CS0169 public int Length => 229; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 229); } public struct Array230 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array229 _other; #pragma warning restore CS0169 public int Length => 230; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 230); } public struct Array231 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array230 _other; #pragma warning restore CS0169 public int Length => 231; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 231); } public struct Array232 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array231 _other; #pragma warning restore CS0169 public int Length => 232; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 232); } public struct Array233 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array232 _other; #pragma warning restore CS0169 public int Length => 233; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 233); } public struct Array234 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array233 _other; #pragma warning restore CS0169 public int Length => 234; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 234); } public struct Array235 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array234 _other; #pragma warning restore CS0169 public int Length => 235; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 235); } public struct Array236 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array235 _other; #pragma warning restore CS0169 public int Length => 236; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 236); } public struct Array237 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array236 _other; #pragma warning restore CS0169 public int Length => 237; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 237); } public struct Array238 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array237 _other; #pragma warning restore CS0169 public int Length => 238; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 238); } public struct Array239 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array238 _other; #pragma warning restore CS0169 public int Length => 239; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 239); } public struct Array240 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array239 _other; #pragma warning restore CS0169 public int Length => 240; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 240); } public struct Array241 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array240 _other; #pragma warning restore CS0169 public int Length => 241; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 241); } public struct Array242 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array241 _other; #pragma warning restore CS0169 public int Length => 242; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 242); } public struct Array243 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array242 _other; #pragma warning restore CS0169 public int Length => 243; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 243); } public struct Array244 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array243 _other; #pragma warning restore CS0169 public int Length => 244; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 244); } public struct Array245 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array244 _other; #pragma warning restore CS0169 public int Length => 245; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 245); } public struct Array246 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array245 _other; #pragma warning restore CS0169 public int Length => 246; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 246); } public struct Array247 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array246 _other; #pragma warning restore CS0169 public int Length => 247; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 247); } public struct Array248 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array247 _other; #pragma warning restore CS0169 public int Length => 248; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 248); } public struct Array249 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array248 _other; #pragma warning restore CS0169 public int Length => 249; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 249); } public struct Array250 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array249 _other; #pragma warning restore CS0169 public int Length => 250; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 250); } public struct Array251 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array250 _other; #pragma warning restore CS0169 public int Length => 251; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 251); } public struct Array252 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array251 _other; #pragma warning restore CS0169 public int Length => 252; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 252); } public struct Array253 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array252 _other; #pragma warning restore CS0169 public int Length => 253; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 253); } public struct Array254 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array253 _other; #pragma warning restore CS0169 public int Length => 254; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 254); } public struct Array255 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array254 _other; #pragma warning restore CS0169 public int Length => 255; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 255); } public struct Array256 : IArray where T : unmanaged { #pragma warning disable CS0169 T _e0; Array255 _other; #pragma warning restore CS0169 public int Length => 256; public ref T this[int index] => ref ToSpan()[index]; public Span ToSpan() => MemoryMarshal.CreateSpan(ref _e0, 256); } }