-
Notifications
You must be signed in to change notification settings - Fork 1
/
ArrayManipulation.autogen.cs
178 lines (165 loc) · 8.7 KB
/
ArrayManipulation.autogen.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
using System;
using System.Reflection.Emit;
using JetBrains.Annotations;
namespace ILGeneratorExtensions
{
public static partial class ArrayManipulation
{
/// <summary>
/// Pops an array reference (containing elements of <see cref="System.Boolean" />), and stores the given <see cref="System.Boolean" /> value at the given index
/// </summary>
/// <param name="generator">The <see cref="T:System.Reflection.Emit.ILGenerator" /> to emit instructions from</param>
/// <param name="value">The <see cref="Boolean" /> value to store in the array</param>
/// <param name="index">The index to store the value at</param>
[PublicAPI]
public static ILGenerator StoreElementAtIndex(this ILGenerator generator, Boolean value, uint index)
{
return generator.LoadConstant(index)
.LoadConstant(value)
.StoreElement<Boolean>();
}
/// <summary>
/// Pops an array reference (containing elements of <see cref="System.Char" />), and stores the given <see cref="System.Char" /> value at the given index
/// </summary>
/// <param name="generator">The <see cref="T:System.Reflection.Emit.ILGenerator" /> to emit instructions from</param>
/// <param name="value">The <see cref="Char" /> value to store in the array</param>
/// <param name="index">The index to store the value at</param>
[PublicAPI]
public static ILGenerator StoreElementAtIndex(this ILGenerator generator, Char value, uint index)
{
return generator.LoadConstant(index)
.LoadConstant(value)
.StoreElement<Char>();
}
/// <summary>
/// Pops an array reference (containing elements of <see cref="System.SByte" />), and stores the given <see cref="System.SByte" /> value at the given index
/// </summary>
/// <param name="generator">The <see cref="T:System.Reflection.Emit.ILGenerator" /> to emit instructions from</param>
/// <param name="value">The <see cref="SByte" /> value to store in the array</param>
/// <param name="index">The index to store the value at</param>
[PublicAPI]
public static ILGenerator StoreElementAtIndex(this ILGenerator generator, SByte value, uint index)
{
return generator.LoadConstant(index)
.LoadConstant(value)
.StoreElement<SByte>();
}
/// <summary>
/// Pops an array reference (containing elements of <see cref="System.Byte" />), and stores the given <see cref="System.Byte" /> value at the given index
/// </summary>
/// <param name="generator">The <see cref="T:System.Reflection.Emit.ILGenerator" /> to emit instructions from</param>
/// <param name="value">The <see cref="Byte" /> value to store in the array</param>
/// <param name="index">The index to store the value at</param>
[PublicAPI]
public static ILGenerator StoreElementAtIndex(this ILGenerator generator, Byte value, uint index)
{
return generator.LoadConstant(index)
.LoadConstant(value)
.StoreElement<Byte>();
}
/// <summary>
/// Pops an array reference (containing elements of <see cref="System.Int16" />), and stores the given <see cref="System.Int16" /> value at the given index
/// </summary>
/// <param name="generator">The <see cref="T:System.Reflection.Emit.ILGenerator" /> to emit instructions from</param>
/// <param name="value">The <see cref="Int16" /> value to store in the array</param>
/// <param name="index">The index to store the value at</param>
[PublicAPI]
public static ILGenerator StoreElementAtIndex(this ILGenerator generator, Int16 value, uint index)
{
return generator.LoadConstant(index)
.LoadConstant(value)
.StoreElement<Int16>();
}
/// <summary>
/// Pops an array reference (containing elements of <see cref="System.UInt16" />), and stores the given <see cref="System.UInt16" /> value at the given index
/// </summary>
/// <param name="generator">The <see cref="T:System.Reflection.Emit.ILGenerator" /> to emit instructions from</param>
/// <param name="value">The <see cref="UInt16" /> value to store in the array</param>
/// <param name="index">The index to store the value at</param>
[PublicAPI]
public static ILGenerator StoreElementAtIndex(this ILGenerator generator, UInt16 value, uint index)
{
return generator.LoadConstant(index)
.LoadConstant(value)
.StoreElement<UInt16>();
}
/// <summary>
/// Pops an array reference (containing elements of <see cref="System.Int32" />), and stores the given <see cref="System.Int32" /> value at the given index
/// </summary>
/// <param name="generator">The <see cref="T:System.Reflection.Emit.ILGenerator" /> to emit instructions from</param>
/// <param name="value">The <see cref="Int32" /> value to store in the array</param>
/// <param name="index">The index to store the value at</param>
[PublicAPI]
public static ILGenerator StoreElementAtIndex(this ILGenerator generator, Int32 value, uint index)
{
return generator.LoadConstant(index)
.LoadConstant(value)
.StoreElement<Int32>();
}
/// <summary>
/// Pops an array reference (containing elements of <see cref="System.UInt32" />), and stores the given <see cref="System.UInt32" /> value at the given index
/// </summary>
/// <param name="generator">The <see cref="T:System.Reflection.Emit.ILGenerator" /> to emit instructions from</param>
/// <param name="value">The <see cref="UInt32" /> value to store in the array</param>
/// <param name="index">The index to store the value at</param>
[PublicAPI]
public static ILGenerator StoreElementAtIndex(this ILGenerator generator, UInt32 value, uint index)
{
return generator.LoadConstant(index)
.LoadConstant(value)
.StoreElement<UInt32>();
}
/// <summary>
/// Pops an array reference (containing elements of <see cref="System.Int64" />), and stores the given <see cref="System.Int64" /> value at the given index
/// </summary>
/// <param name="generator">The <see cref="T:System.Reflection.Emit.ILGenerator" /> to emit instructions from</param>
/// <param name="value">The <see cref="Int64" /> value to store in the array</param>
/// <param name="index">The index to store the value at</param>
[PublicAPI]
public static ILGenerator StoreElementAtIndex(this ILGenerator generator, Int64 value, uint index)
{
return generator.LoadConstant(index)
.LoadConstant(value)
.StoreElement<Int64>();
}
/// <summary>
/// Pops an array reference (containing elements of <see cref="System.UInt64" />), and stores the given <see cref="System.UInt64" /> value at the given index
/// </summary>
/// <param name="generator">The <see cref="T:System.Reflection.Emit.ILGenerator" /> to emit instructions from</param>
/// <param name="value">The <see cref="UInt64" /> value to store in the array</param>
/// <param name="index">The index to store the value at</param>
[PublicAPI]
public static ILGenerator StoreElementAtIndex(this ILGenerator generator, UInt64 value, uint index)
{
return generator.LoadConstant(index)
.LoadConstant(value)
.StoreElement<UInt64>();
}
/// <summary>
/// Pops an array reference (containing elements of <see cref="System.Single" />), and stores the given <see cref="System.Single" /> value at the given index
/// </summary>
/// <param name="generator">The <see cref="T:System.Reflection.Emit.ILGenerator" /> to emit instructions from</param>
/// <param name="value">The <see cref="Single" /> value to store in the array</param>
/// <param name="index">The index to store the value at</param>
[PublicAPI]
public static ILGenerator StoreElementAtIndex(this ILGenerator generator, Single value, uint index)
{
return generator.LoadConstant(index)
.LoadConstant(value)
.StoreElement<Single>();
}
/// <summary>
/// Pops an array reference (containing elements of <see cref="System.Double" />), and stores the given <see cref="System.Double" /> value at the given index
/// </summary>
/// <param name="generator">The <see cref="T:System.Reflection.Emit.ILGenerator" /> to emit instructions from</param>
/// <param name="value">The <see cref="Double" /> value to store in the array</param>
/// <param name="index">The index to store the value at</param>
[PublicAPI]
public static ILGenerator StoreElementAtIndex(this ILGenerator generator, Double value, uint index)
{
return generator.LoadConstant(index)
.LoadConstant(value)
.StoreElement<Double>();
}
}
}