-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNix.cs
More file actions
397 lines (362 loc) · 17.5 KB
/
Nix.cs
File metadata and controls
397 lines (362 loc) · 17.5 KB
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using RapidField.SolidInstruments.Core.Extensions;
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
namespace RapidField.SolidInstruments.Core
{
/// <summary>
/// Represents nothing.
/// </summary>
/// <remarks>
/// The <see cref="Nix" /> type is used to signify that a type parameter is not evaluated. Instances of <see cref="Nix" /> are
/// used as alternatives to null references and default values, when appropriate.
/// </remarks>
[StructLayout(LayoutKind.Explicit, CharSet = CharSet.Unicode, Size = 1)]
public struct Nix : ICloneable, IComparable, IComparable<Nix>, IConvertible, IEquatable<Nix>
{
/// <summary>
/// Initializes a new instance of the <see cref="Nix" /> structure.
/// </summary>
/// <param name="value">
/// An ignored value.
/// </param>
[DebuggerHidden]
private Nix(Byte value)
{
Value = value;
}
/// <summary>
/// Determines whether or not two specified <see cref="Nix" /> instances are not equal.
/// </summary>
/// <param name="a">
/// The first <see cref="Nix" /> instance to compare.
/// </param>
/// <param name="b">
/// The second <see cref="Nix" /> instance to compare.
/// </param>
/// <returns>
/// A value indicating whether or not the specified instances are not equal.
/// </returns>
public static Boolean operator !=(Nix a, Nix b) => (a == b) == false;
/// <summary>
/// Determines whether or not a specified <see cref="Nix" /> instance is less than another specified instance.
/// </summary>
/// <param name="a">
/// The first <see cref="Nix" /> instance to compare.
/// </param>
/// <param name="b">
/// The second <see cref="Nix" /> instance to compare.
/// </param>
/// <returns>
/// <see langword="true" /> if the second object is earlier than the first object, otherwise <see langword="false" />.
/// </returns>
public static Boolean operator <(Nix a, Nix b) => false;
/// <summary>
/// Determines whether or not a specified <see cref="Nix" /> instance is less than or equal to another supplied instance.
/// </summary>
/// <param name="a">
/// The first <see cref="Nix" /> instance to compare.
/// </param>
/// <param name="b">
/// The second <see cref="Nix" /> instance to compare.
/// </param>
/// <returns>
/// <see langword="true" /> if the second object is earlier than or equal to the first object, otherwise
/// <see langword="false" />.
/// </returns>
public static Boolean operator <=(Nix a, Nix b) => true;
/// <summary>
/// Determines whether or not two specified <see cref="Nix" /> instances are equal.
/// </summary>
/// <param name="a">
/// The first <see cref="Nix" /> instance to compare.
/// </param>
/// <param name="b">
/// The second <see cref="Nix" /> instance to compare.
/// </param>
/// <returns>
/// A value indicating whether or not the specified instances are equal.
/// </returns>
public static Boolean operator ==(Nix a, Nix b) => true;
/// <summary>
/// Determines whether or not a specified <see cref="Nix" /> instance is greater than another specified instance.
/// </summary>
/// <param name="a">
/// The first <see cref="Nix" /> instance to compare.
/// </param>
/// <param name="b">
/// The second <see cref="Nix" /> instance to compare.
/// </param>
/// <returns>
/// <see langword="true" /> if the second object is later than the first object, otherwise <see langword="false" />.
/// </returns>
public static Boolean operator >(Nix a, Nix b) => false;
/// <summary>
/// Determines whether or not a specified <see cref="Nix" /> instance is greater than or equal to another supplied instance.
/// </summary>
/// <param name="a">
/// The first <see cref="Nix" /> instance to compare.
/// </param>
/// <param name="b">
/// The second <see cref="Nix" /> instance to compare.
/// </param>
/// <returns>
/// <see langword="true" /> if the second object is later than or equal to the first object, otherwise
/// <see langword="false" />.
/// </returns>
public static Boolean operator >=(Nix a, Nix b) => true;
/// <summary>
/// Creates a new object that is a copy of the current <see cref="Nix" />.
/// </summary>
/// <returns>
/// A new object that is a copy of the current <see cref="Nix" />.
/// </returns>
public Object Clone() => new Nix(0x00);
/// <summary>
/// Compares the current <see cref="Nix" /> to the specified object and returns an indication of their relative values.
/// </summary>
/// <param name="other">
/// The <see cref="Nix" /> to compare to this instance.
/// </param>
/// <returns>
/// Negative one if this instance is earlier than the specified instance; one if this instance is later than the supplied
/// instance; zero if they are equal.
/// </returns>
public Int32 CompareTo(Nix other) => 0;
/// <summary>
/// Compares the current <see cref="Nix" /> to the specified object and returns an indication of their relative values.
/// </summary>
/// <param name="obj">
/// The object to compare to this instance.
/// </param>
/// <returns>
/// Negative one if this instance is earlier than the specified instance; one if this instance is later than the supplied
/// instance; zero if they are equal.
/// </returns>
public Int32 CompareTo(Object obj) => obj is Nix ? CompareTo((Nix)obj) : GetType().FullName.CompareTo(obj.GetType().FullName);
/// <summary>
/// Determines whether or not the current <see cref="Nix" /> is equal to the specified <see cref="Object" />.
/// </summary>
/// <param name="obj">
/// The <see cref="Object" /> to compare to this instance.
/// </param>
/// <returns>
/// A value indicating whether or not the specified instances are equal.
/// </returns>
public override Boolean Equals(Object obj) => obj.GetType() == typeof(Nix);
/// <summary>
/// Determines whether or not two specified <see cref="Nix" /> instances are equal.
/// </summary>
/// <param name="other">
/// The <see cref="Nix" /> to compare to this instance.
/// </param>
/// <returns>
/// A value indicating whether or not the specified instances are equal.
/// </returns>
public Boolean Equals(Nix other) => true;
/// <summary>
/// Returns the hash code for this instance.
/// </summary>
/// <returns>
/// A 32-bit signed integer hash code.
/// </returns>
public override Int32 GetHashCode() => 0;
/// <summary>
/// Returns the <see cref="TypeCode" /> for the current <see cref="Nix" /> instance.
/// </summary>
/// <returns>
/// The <see cref="TypeCode" /> for the current <see cref="Nix" /> instance.
/// </returns>
public TypeCode GetTypeCode() => TypeCode.Object;
/// <summary>
/// Converts the value of the current <see cref="Nix" /> to its equivalent boolean representation.
/// </summary>
/// <param name="provider">
/// An <see cref="IFormatProvider" /> interface implementation that supplies culture-specific formatting information.
/// </param>
/// <returns>
/// A boolean representation of the current <see cref="Nix" />.
/// </returns>
public Boolean ToBoolean(IFormatProvider provider) => default;
/// <summary>
/// Converts the value of the current <see cref="Nix" /> to its equivalent 8-bit integer representation.
/// </summary>
/// <param name="provider">
/// An <see cref="IFormatProvider" /> interface implementation that supplies culture-specific formatting information.
/// </param>
/// <returns>
/// An 8-bit integer representation of the current <see cref="Nix" />.
/// </returns>
public Byte ToByte(IFormatProvider provider) => default;
/// <summary>
/// Converts the value of the current <see cref="Nix" /> to its equivalent character representation.
/// </summary>
/// <param name="provider">
/// An <see cref="IFormatProvider" /> interface implementation that supplies culture-specific formatting information.
/// </param>
/// <returns>
/// A character representation of the current <see cref="Nix" />.
/// </returns>
public Char ToChar(IFormatProvider provider) => default;
/// <summary>
/// Converts the value of the current <see cref="Nix" /> to its equivalent date-time representation.
/// </summary>
/// <param name="provider">
/// An <see cref="IFormatProvider" /> interface implementation that supplies culture-specific formatting information.
/// </param>
/// <returns>
/// A date-time representation of the current <see cref="Nix" />.
/// </returns>
public DateTime ToDateTime(IFormatProvider provider) => default;
/// <summary>
/// Converts the value of the current <see cref="Nix" /> to its equivalent decimal number representation.
/// </summary>
/// <param name="provider">
/// An <see cref="IFormatProvider" /> interface implementation that supplies culture-specific formatting information.
/// </param>
/// <returns>
/// A decimal number representation of the current <see cref="Nix" />.
/// </returns>
public Decimal ToDecimal(IFormatProvider provider) => default;
/// <summary>
/// Converts the value of the current <see cref="Nix" /> to its equivalent double-precision floating point number
/// representation.
/// </summary>
/// <param name="provider">
/// An <see cref="IFormatProvider" /> interface implementation that supplies culture-specific formatting information.
/// </param>
/// <returns>
/// A double-precision floating point number representation of the current <see cref="Nix" />.
/// </returns>
public Double ToDouble(IFormatProvider provider) => default;
/// <summary>
/// Converts the value of the current <see cref="Nix" /> to its equivalent 16-bit integer representation.
/// </summary>
/// <param name="provider">
/// An <see cref="IFormatProvider" /> interface implementation that supplies culture-specific formatting information.
/// </param>
/// <returns>
/// A 16-bit integer representation of the current <see cref="Nix" />.
/// </returns>
public Int16 ToInt16(IFormatProvider provider) => default;
/// <summary>
/// Converts the value of the current <see cref="Nix" /> to its equivalent 32-bit integer representation.
/// </summary>
/// <param name="provider">
/// An <see cref="IFormatProvider" /> interface implementation that supplies culture-specific formatting information.
/// </param>
/// <returns>
/// A 32-bit integer representation of the current <see cref="Nix" />.
/// </returns>
public Int32 ToInt32(IFormatProvider provider) => default;
/// <summary>
/// Converts the value of the current <see cref="Nix" /> to its equivalent 64-bit integer representation.
/// </summary>
/// <param name="provider">
/// An <see cref="IFormatProvider" /> interface implementation that supplies culture-specific formatting information.
/// </param>
/// <returns>
/// A 64-bit integer representation of the current <see cref="Nix" />.
/// </returns>
public Int64 ToInt64(IFormatProvider provider) => default;
/// <summary>
/// Converts the value of the current <see cref="Nix" /> to its equivalent signed 8-bit integer representation.
/// </summary>
/// <param name="provider">
/// An <see cref="IFormatProvider" /> interface implementation that supplies culture-specific formatting information.
/// </param>
/// <returns>
/// A signed 8-bit integer representation of the current <see cref="Nix" />.
/// </returns>
public SByte ToSByte(IFormatProvider provider) => default;
/// <summary>
/// Converts the value of the current <see cref="Nix" /> to its equivalent single-precision floating point number
/// representation.
/// </summary>
/// <param name="provider">
/// An <see cref="IFormatProvider" /> interface implementation that supplies culture-specific formatting information.
/// </param>
/// <returns>
/// A single-precision floating point number representation of the current <see cref="Nix" />.
/// </returns>
public Single ToSingle(IFormatProvider provider) => default;
/// <summary>
/// Converts the value of the current <see cref="Nix" /> to its equivalent string representation.
/// </summary>
/// <returns>
/// A string representation of the current <see cref="Nix" />.
/// </returns>
public override String ToString() => String.Empty;
/// <summary>
/// Converts the value of the current <see cref="Nix" /> to its equivalent string representation.
/// </summary>
/// <param name="provider">
/// An <see cref="IFormatProvider" /> interface implementation that supplies culture-specific formatting information.
/// </param>
/// <returns>
/// A string representation of the current <see cref="Nix" />.
/// </returns>
public String ToString(IFormatProvider provider) => String.Empty;
/// <summary>
/// Converts the value of the current <see cref="Nix" /> to the specified type with an equivalent value.
/// </summary>
/// <param name="conversionType">
/// The type to which the value of the current <see cref="Nix" /> is converted.
/// </param>
/// <param name="provider">
/// An <see cref="IFormatProvider" /> interface implementation that supplies culture-specific formatting information.
/// </param>
/// <returns>
/// An <see cref="Object" /> instance of type <paramref name="conversionType" /> whose value is equivalent to the value of
/// the current <see cref="Nix" />.
/// </returns>
public Object ToType(Type conversionType, IFormatProvider provider) => conversionType.GetDefaultValue();
/// <summary>
/// Converts the value of the current <see cref="Nix" /> to its equivalent unsigned 16-bit integer representation.
/// </summary>
/// <param name="provider">
/// An <see cref="IFormatProvider" /> interface implementation that supplies culture-specific formatting information.
/// </param>
/// <returns>
/// An unsigned 16-bit integer representation of the current <see cref="Nix" />.
/// </returns>
public UInt16 ToUInt16(IFormatProvider provider) => default;
/// <summary>
/// Converts the value of the current <see cref="Nix" /> to its equivalent unsigned 32-bit integer representation.
/// </summary>
/// <param name="provider">
/// An <see cref="IFormatProvider" /> interface implementation that supplies culture-specific formatting information.
/// </param>
/// <returns>
/// An unsigned 32-bit integer representation of the current <see cref="Nix" />.
/// </returns>
public UInt32 ToUInt32(IFormatProvider provider) => default;
/// <summary>
/// Converts the value of the current <see cref="Nix" /> to its equivalent unsigned 64-bit integer representation.
/// </summary>
/// <param name="provider">
/// An <see cref="IFormatProvider" /> interface implementation that supplies culture-specific formatting information.
/// </param>
/// <returns>
/// An unsigned 64-bit integer representation of the current <see cref="Nix" />.
/// </returns>
public UInt64 ToUInt64(IFormatProvider provider) => default;
/// <summary>
/// Represents an ignored value.
/// </summary>
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
[FieldOffset(0)]
private readonly Byte Value;
/// <summary>
/// Represents a static <see cref="Nix" /> instance.
/// </summary>
public static readonly Nix Instance = new Nix(0x00);
/// <summary>
/// Represents a static reference to the <see cref="Nix" /> type.
/// </summary>
public static readonly Type Type = typeof(Nix);
}
}