aboutsummaryrefslogtreecommitdiff
path: root/lib/Utils/src/ERRNO.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-09-14 15:54:30 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-09-14 15:54:30 -0400
commitbb706bbfa7519c8b5c506e76a787b9b016acfb75 (patch)
tree12abc5835dc6df87c3aaf7d39dfd541fa26b6529 /lib/Utils/src/ERRNO.cs
parenta19807f7f73ffb023e4ffe93071fe91525fd2c8d (diff)
Squashed commit of the following:HEADmaster
commit 322bbe00f77772ba6b0e25759de95dd517b6014c Author: vnugent <public@vaughnnugent.com> Date: Sat Sep 14 15:43:45 2024 -0400 build: Testing updates and easier dev-testing commit abcd0e0d6cb5532c8a19a8cd8c7dd83e7f143442 Author: vnugent <public@vaughnnugent.com> Date: Wed Sep 11 16:43:20 2024 -0400 Managed library & package updates commit 2ae018af277b808786cf398c689910bc016e7ef0 Author: vnugent <public@vaughnnugent.com> Date: Tue Sep 10 18:59:06 2024 -0400 fix: zero/unsafezero with data types > sizeof(byte) commit 17c646a619eaa101d66871faa8f57c76500a8ad2 Merge: 97d0c46 a19807f Author: vnugent <public@vaughnnugent.com> Date: Sat Sep 7 15:31:01 2024 -0400 Merge branch 'master' into develop
Diffstat (limited to 'lib/Utils/src/ERRNO.cs')
-rw-r--r--lib/Utils/src/ERRNO.cs25
1 files changed, 14 insertions, 11 deletions
diff --git a/lib/Utils/src/ERRNO.cs b/lib/Utils/src/ERRNO.cs
index 684a3c7..0a95780 100644
--- a/lib/Utils/src/ERRNO.cs
+++ b/lib/Utils/src/ERRNO.cs
@@ -30,8 +30,12 @@ namespace VNLib.Utils
/// <summary>
/// Implements a C style integer error code type. Size is platform dependent
/// </summary>
+ /// <remarks>
+ /// Creates a new <see cref="ERRNO"/> from the specified error value
+ /// </remarks>
+ /// <param name="errno">The value of the error to represent</param>
[StructLayout(LayoutKind.Sequential)]
- public readonly struct ERRNO : IEquatable<ERRNO>, ISpanFormattable, IFormattable
+ public readonly struct ERRNO(nint errno) : IEquatable<ERRNO>, ISpanFormattable, IFormattable
{
/// <summary>
/// Represents a successfull error code (true)
@@ -43,13 +47,7 @@ namespace VNLib.Utils
/// </summary>
public static readonly ERRNO E_FAIL = false;
- private readonly nint ErrorCode;
-
- /// <summary>
- /// Creates a new <see cref="ERRNO"/> from the specified error value
- /// </summary>
- /// <param name="errno">The value of the error to represent</param>
- public ERRNO(nint errno) => ErrorCode = errno;
+ private readonly nint ErrorCode = errno;
/// <summary>
/// Creates a new <see cref="ERRNO"/> from an <see cref="int"/> error code. null = 0 = false
@@ -130,13 +128,14 @@ namespace VNLib.Utils
}
return false;
}
+#pragma warning disable CA1305 // Specify IFormatProvider
/// <summary>
/// The integer error value of the current instance in radix 10
/// </summary>
/// <returns>The radix 10 formatted error code</returns>
- public readonly override string ToString() => ErrorCode.ToString();
+ public override readonly string ToString() => ErrorCode.ToString();
/// <summary>
/// Formats the internal nint error code as a string in specified format
/// </summary>
@@ -144,11 +143,15 @@ namespace VNLib.Utils
/// <returns>The formatted error code</returns>
public readonly string ToString(string format) => ErrorCode.ToString(format);
+#pragma warning restore CA1305 // Specify IFormatProvider
+
///<inheritdoc/>
- public readonly bool TryFormat(Span<char> destination, out int charsWritten, ReadOnlySpan<char> format, IFormatProvider? provider) => ErrorCode.TryFormat(destination, out charsWritten, format, provider);
+ public readonly bool TryFormat(Span<char> destination, out int charsWritten, ReadOnlySpan<char> format, IFormatProvider? provider)
+ => ErrorCode.TryFormat(destination, out charsWritten, format, provider);
///<inheritdoc/>
- public readonly string ToString(string? format, IFormatProvider? formatProvider) => ErrorCode.ToString(format, formatProvider);
+ public readonly string ToString(string? format, IFormatProvider? formatProvider)
+ => ErrorCode.ToString(format, formatProvider);
public static ERRNO operator +(ERRNO err, int add) => new(err.ErrorCode + add);
public static ERRNO operator +(ERRNO err, nint add) => new(err.ErrorCode + add);