2022-01-03 05:35:59 +00:00
|
|
|
|
#if !NET6
|
2020-12-22 00:52:11 +00:00
|
|
|
|
#pragma warning disable
|
|
|
|
|
// ReSharper disable once UnusedType.Global
|
2022-01-03 05:35:59 +00:00
|
|
|
|
global using static PKHeX.Core.Buffers.Binary.Extra.BinaryPrimitives;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
|
|
|
|
namespace PKHeX.Core.Buffers.Binary.Extra
|
|
|
|
|
{
|
|
|
|
|
internal static class BinaryPrimitives
|
|
|
|
|
{
|
|
|
|
|
public static float ReadSingleLittleEndian(ReadOnlySpan<byte> data) => MemoryMarshal.Read<float>(data);
|
|
|
|
|
public static void WriteSingleLittleEndian(Span<byte> data, float value) => MemoryMarshal.Write(data, ref value);
|
|
|
|
|
public static double ReadDoubleLittleEndian(ReadOnlySpan<byte> data) => MemoryMarshal.Read<double>(data);
|
|
|
|
|
public static void WriteDoubleLittleEndian(Span<byte> data, double value) => MemoryMarshal.Write(data, ref value);
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-12-22 00:52:11 +00:00
|
|
|
|
|
|
|
|
|
namespace System.Runtime.CompilerServices
|
|
|
|
|
{
|
|
|
|
|
using Diagnostics;
|
|
|
|
|
using Diagnostics.CodeAnalysis;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reserved to be used by the compiler for tracking metadata.
|
|
|
|
|
/// This class should not be used by developers in source code.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExcludeFromCodeCoverage, DebuggerNonUserCode]
|
|
|
|
|
internal static class IsExternalInit
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-17 08:05:07 +00:00
|
|
|
|
namespace System.Diagnostics.CodeAnalysis
|
|
|
|
|
{
|
2021-05-29 22:31:47 +00:00
|
|
|
|
[AttributeUsage(AttributeTargets.Parameter)]
|
2021-01-17 08:05:07 +00:00
|
|
|
|
internal sealed class NotNullWhenAttribute : Attribute
|
|
|
|
|
{
|
|
|
|
|
/// <summary>Initializes the attribute with the specified return value condition.</summary>
|
|
|
|
|
/// <param name="returnValue">
|
|
|
|
|
/// The return value condition. If the method returns this value, the associated parameter will not be null.
|
|
|
|
|
/// </param>
|
|
|
|
|
public NotNullWhenAttribute(bool returnValue) => ReturnValue = returnValue;
|
|
|
|
|
|
|
|
|
|
/// <summary>Gets the return value condition.</summary>
|
|
|
|
|
public bool ReturnValue { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-12-22 00:52:11 +00:00
|
|
|
|
#pragma warning restore
|
2021-01-17 08:05:07 +00:00
|
|
|
|
#endif
|