Math.Gmp.Native/Math.Gmp.Native/mp_size_t.cs

277 lines
13 KiB
C#
Raw Normal View History

2017-11-04 16:02:37 +01:00

using System;
using System.Runtime.InteropServices;
namespace Math.Gmp.Native
{
/// <summary>
/// Represents a count of limbs.
/// </summary>
/// <remarks>
/// <para>
2017-12-15 02:18:55 +01:00
/// Counts of limbs of a multi-precision number represented in the C type <see cref="mp_size_t">mp_size_t</see>.
2017-11-04 16:02:37 +01:00
/// Currently this is normally a long, but on some systems its an int for efficiency,
/// and on some systems it will be long long in the future.
/// </para>
/// <para>
/// In .Net, this is a 32-bit integer.
/// </para>
/// </remarks>
2017-12-15 02:18:55 +01:00
/// <seealso cref="mp_limb_t">mp_limb_t</seealso>
/// <seealso cref="mpf_t">mpf_t</seealso>
/// <seealso cref="mpq_t">mpq_t</seealso>
/// <seealso cref="mpz_t">mpz_t</seealso>
2017-11-04 16:02:37 +01:00
public struct mp_size_t
{
/// <summary>
2017-12-15 02:18:55 +01:00
/// The <see cref="mp_size_t">mp_size_t</see> value.
/// </summary>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1051:DoNotDeclareVisibleInstanceFields")]
public int Value;
2017-11-04 16:02:37 +01:00
/// <summary>
2017-12-15 02:18:55 +01:00
/// Creates a new <see cref="mp_size_t">mp_size_t</see>, and sets its <paramref name="value"/>.
2017-11-04 16:02:37 +01:00
/// </summary>
2017-12-15 02:18:55 +01:00
/// <param name="value">The value of the new <see cref="mp_size_t">mp_size_t</see>.</param>
2017-11-04 16:02:37 +01:00
public mp_size_t(int value)
{
this.Value = value;
2017-11-04 16:02:37 +01:00
}
/// <summary>
2017-12-15 02:18:55 +01:00
/// Converts a <see cref="Byte">Byte</see> value to an <see cref="mp_size_t">mp_size_t</see> value.
2017-11-04 16:02:37 +01:00
/// </summary>
2017-12-15 02:18:55 +01:00
/// <param name="value">A <see cref="Byte">Byte</see> value.</param>
/// <returns>An <see cref="mp_size_t">mp_size_t</see> value.</returns>
2017-11-04 16:02:37 +01:00
public static implicit operator mp_size_t(byte value)
{
return new mp_size_t(value);
}
/// <summary>
2017-12-15 02:18:55 +01:00
/// Converts a <see cref="Byte">Byte</see> value to an <see cref="mp_size_t">mp_size_t</see> value.
2017-11-04 16:02:37 +01:00
/// </summary>
2017-12-15 02:18:55 +01:00
/// <param name="value">A <see cref="Byte">Byte</see> value.</param>
/// <returns>An <see cref="mp_size_t">mp_size_t</see> value.</returns>
2017-11-04 16:02:37 +01:00
public static implicit operator mp_size_t(sbyte value)
{
return new mp_size_t(value);
}
/// <summary>
2017-12-15 02:18:55 +01:00
/// Converts a <see cref="UInt16">UInt16</see> value to an <see cref="mp_size_t">mp_size_t</see> value.
2017-11-04 16:02:37 +01:00
/// </summary>
2017-12-15 02:18:55 +01:00
/// <param name="value">A <see cref="UInt16">UInt16</see> value.</param>
/// <returns>An <see cref="mp_size_t">mp_size_t</see> value.</returns>
2017-11-04 16:02:37 +01:00
public static implicit operator mp_size_t(ushort value)
{
return new mp_size_t(value);
}
/// <summary>
2017-12-15 02:18:55 +01:00
/// Converts an <see cref="Int16">Int16</see> value to an <see cref="mp_size_t">mp_size_t</see> value.
2017-11-04 16:02:37 +01:00
/// </summary>
2017-12-15 02:18:55 +01:00
/// <param name="value">An <see cref="Int16">Int16</see> value.</param>
/// <returns>An <see cref="mp_size_t">mp_size_t</see> value.</returns>
2017-11-04 16:02:37 +01:00
public static implicit operator mp_size_t(short value)
{
return new mp_size_t(value);
}
/// <summary>
2017-12-15 02:18:55 +01:00
/// Converts a <see cref="UInt32">UInt32</see> value to an <see cref="mp_size_t">mp_size_t</see> value.
2017-11-04 16:02:37 +01:00
/// </summary>
2017-12-15 02:18:55 +01:00
/// <param name="value">A <see cref="UInt32">UInt32</see> value.</param>
/// <returns>An <see cref="mp_size_t">mp_size_t</see> value.</returns>
2017-11-04 16:02:37 +01:00
public static explicit operator mp_size_t(uint value)
{
if (value > int.MaxValue) throw new System.OverflowException(String.Format(System.Globalization.CultureInfo.InvariantCulture, "'{0}' is out of range of the mp_size_t data type.", value));
return new mp_size_t((int)value);
}
/// <summary>
2017-12-15 02:18:55 +01:00
/// Converts an <see cref="Int32">Int32</see> value to an <see cref="mp_size_t">mp_size_t</see> value.
2017-11-04 16:02:37 +01:00
/// </summary>
2017-12-15 02:18:55 +01:00
/// <param name="value">An <see cref="Int32">Int32</see> value.</param>
/// <returns>An <see cref="mp_size_t">mp_size_t</see> value.</returns>
2017-11-04 16:02:37 +01:00
public static implicit operator mp_size_t(int value)
{
return new mp_size_t(value);
}
/// <summary>
2017-12-15 02:18:55 +01:00
/// Converts a <see cref="UInt64">UInt64</see> value to an <see cref="mp_size_t">mp_size_t</see> value.
2017-11-04 16:02:37 +01:00
/// </summary>
2017-12-15 02:18:55 +01:00
/// <param name="value">A <see cref="UInt64">UInt64</see> value.</param>
/// <returns>An <see cref="mp_size_t">mp_size_t</see> value.</returns>
2017-11-04 16:02:37 +01:00
public static explicit operator mp_size_t(ulong value)
{
if (value > int.MaxValue) throw new System.OverflowException(String.Format(System.Globalization.CultureInfo.InvariantCulture, "'{0}' is out of range of the mp_size_t data type.", value));
return new mp_size_t((int)value);
}
/// <summary>
2017-12-15 02:18:55 +01:00
/// Converts an <see cref="Int64">Int64</see> value to a <see cref="mp_size_t">mp_size_t</see> value.
2017-11-04 16:02:37 +01:00
/// </summary>
2017-12-15 02:18:55 +01:00
/// <param name="value">An <see cref="Int64">Int64</see> value.</param>
/// <returns>An <see cref="mp_size_t">mp_size_t</see> value.</returns>
2017-11-04 16:02:37 +01:00
public static explicit operator mp_size_t(long value)
{
if (value < uint.MinValue || value > uint.MaxValue) throw new System.OverflowException(String.Format(System.Globalization.CultureInfo.InvariantCulture, "'{0}' is out of range of the mp_size_t data type.", value));
return new mp_size_t((int)value);
}
/// <summary>
2017-12-15 02:18:55 +01:00
/// Converts an <see cref="mp_size_t">mp_size_t</see> value to a <see cref="Byte">Byte</see> value.
2017-11-04 16:02:37 +01:00
/// </summary>
2017-12-15 02:18:55 +01:00
/// <param name="value">An <see cref="mp_size_t">mp_size_t</see> value.</param>
/// <returns>A <see cref="Byte">Byte</see> value.</returns>
2017-11-04 16:02:37 +01:00
public static explicit operator byte(mp_size_t value)
{
if (value.Value < 0 || value.Value > byte.MaxValue) throw new System.OverflowException(String.Format(System.Globalization.CultureInfo.InvariantCulture, "'{0}' is out of range of the Byte data type.", value));
return (byte)value.Value;
2017-11-04 16:02:37 +01:00
}
/// <summary>
2017-12-15 02:18:55 +01:00
/// Converts an <see cref="mp_size_t">mp_size_t</see> value to an <see cref="SByte">SByte</see> value.
2017-11-04 16:02:37 +01:00
/// </summary>
2017-12-15 02:18:55 +01:00
/// <param name="value">An <see cref="mp_size_t">mp_size_t</see> value.</param>
/// <returns>An <see cref="SByte">SByte</see> value.</returns>
2017-11-04 16:02:37 +01:00
public static explicit operator sbyte(mp_size_t value)
{
if (value.Value < sbyte.MinValue || value.Value > sbyte.MaxValue) throw new System.OverflowException(String.Format(System.Globalization.CultureInfo.InvariantCulture, "'{0}' is out of range of the SByte data type.", value));
return (sbyte)value.Value;
2017-11-04 16:02:37 +01:00
}
/// <summary>
2017-12-15 02:18:55 +01:00
/// Converts an <see cref="mp_size_t">mp_size_t</see> value to a <see cref="UInt16">UInt16</see> value.
2017-11-04 16:02:37 +01:00
/// </summary>
2017-12-15 02:18:55 +01:00
/// <param name="value">An <see cref="mp_size_t">mp_size_t</see> value.</param>
/// <returns>A <see cref="UInt16">UInt16</see> value.</returns>
2017-11-04 16:02:37 +01:00
public static explicit operator ushort(mp_size_t value)
{
if (value.Value < 0 || value.Value > ushort.MaxValue) throw new System.OverflowException(String.Format(System.Globalization.CultureInfo.InvariantCulture, "'{0}' is out of range of the UInt16 data type.", value));
return (ushort)value.Value;
2017-11-04 16:02:37 +01:00
}
/// <summary>
2017-12-15 02:18:55 +01:00
/// Converts an <see cref="mp_size_t">mp_size_t</see> value to an <see cref="Int16">Int16</see> value.
2017-11-04 16:02:37 +01:00
/// </summary>
2017-12-15 02:18:55 +01:00
/// <param name="value">An <see cref="mp_size_t">mp_size_t</see> value.</param>
/// <returns>An <see cref="Int16">Int16</see> value.</returns>
2017-11-04 16:02:37 +01:00
public static explicit operator short(mp_size_t value)
{
if (value.Value < short.MinValue || value.Value > short.MaxValue) throw new System.OverflowException(String.Format(System.Globalization.CultureInfo.InvariantCulture, "'{0}' is out of range of the Int16 data type.", value));
return (short)value.Value;
2017-11-04 16:02:37 +01:00
}
/// <summary>
2017-12-15 02:18:55 +01:00
/// Converts an <see cref="mp_size_t">mp_size_t</see> value to a <see cref="UInt32">UInt32</see> value.
2017-11-04 16:02:37 +01:00
/// </summary>
2017-12-15 02:18:55 +01:00
/// <param name="value">An <see cref="mp_size_t">mp_size_t</see> value.</param>
/// <returns>A <see cref="UInt32">UInt32</see> value.</returns>
2017-11-04 16:02:37 +01:00
public static explicit operator uint(mp_size_t value)
{
if (value.Value < 0) throw new System.OverflowException(String.Format(System.Globalization.CultureInfo.InvariantCulture, "'{0}' is out of range of the UInt32 data type.", value));
return (uint)value.Value;
2017-11-04 16:02:37 +01:00
}
/// <summary>
2017-12-15 02:18:55 +01:00
/// Converts an <see cref="mp_size_t">mp_size_t</see> value to an <see cref="Int32">Int32</see> value.
2017-11-04 16:02:37 +01:00
/// </summary>
2017-12-15 02:18:55 +01:00
/// <param name="value">An <see cref="mp_size_t">mp_size_t</see> value.</param>
/// <returns>An <see cref="Int32">Int32</see> value.</returns>
2017-11-04 16:02:37 +01:00
public static implicit operator int(mp_size_t value)
{
return value.Value;
2017-11-04 16:02:37 +01:00
}
/// <summary>
2017-12-15 02:18:55 +01:00
/// Converts an <see cref="mp_size_t">mp_size_t</see> value to a <see cref="UInt64">UInt64</see> value.
2017-11-04 16:02:37 +01:00
/// </summary>
2017-12-15 02:18:55 +01:00
/// <param name="value">An <see cref="mp_size_t">mp_size_t</see> value.</param>
/// <returns>A <see cref="UInt64">UInt64</see> value.</returns>
2017-11-04 16:02:37 +01:00
public static explicit operator ulong(mp_size_t value)
{
if (value.Value < 0) throw new System.OverflowException(String.Format(System.Globalization.CultureInfo.InvariantCulture, "'{0}' is out of range of the UInt64 data type.", value));
return (ulong)value.Value;
2017-11-04 16:02:37 +01:00
}
/// <summary>
2017-12-15 02:18:55 +01:00
/// Converts an <see cref="mp_size_t">mp_size_t</see> value to an <see cref="Int64">Int64</see> value.
2017-11-04 16:02:37 +01:00
/// </summary>
2017-12-15 02:18:55 +01:00
/// <param name="value">An <see cref="mp_size_t">mp_size_t</see> value.</param>
/// <returns>An <see cref="Int64">Int64</see> value.</returns>
2017-11-04 16:02:37 +01:00
public static implicit operator long(mp_size_t value)
{
return value.Value;
2017-11-04 16:02:37 +01:00
}
/// <summary>
2017-12-15 02:18:55 +01:00
/// Gets the string representation of the <see cref="mp_size_t">mp_size_t</see>.
2017-11-04 16:02:37 +01:00
/// </summary>
2017-12-15 02:18:55 +01:00
/// <returns>The string representation of the <see cref="mp_size_t">mp_size_t</see>.</returns>
2017-11-04 16:02:37 +01:00
public override string ToString()
{
return Value.ToString(System.Globalization.CultureInfo.InvariantCulture);
2017-11-04 16:02:37 +01:00
}
/// <summary>
/// Returns a value indicating whether this instance is equal to a specified object.
/// </summary>
/// <param name="obj">An object to compare with this instance.</param>
2017-12-15 02:18:55 +01:00
/// <returns><c>True</c> if <paramref name="obj"/> is an instance of <see cref="mp_size_t">mp_size_t</see> and equals the value of this instance; otherwise, <c>False</c>.</returns>
2017-11-04 16:02:37 +01:00
public override bool Equals(object obj)
{
if (!(obj is mp_size_t))
return false;
return Equals((mp_size_t)obj);
}
/// <summary>
2017-12-15 02:18:55 +01:00
/// Returns a value indicating whether this instance is equal to a specified <see cref="mp_size_t">mp_size_t</see> value.
2017-11-04 16:02:37 +01:00
/// </summary>
2017-12-15 02:18:55 +01:00
/// <param name="other">A <see cref="mp_size_t">mp_size_t</see> value to compare to this instance.</param>
2017-11-04 16:02:37 +01:00
/// <returns><c>True</c> if <paramref name="other"/> has the same value as this instance; otherwise, <c>False</c>.</returns>
public bool Equals(mp_size_t other)
{
return Value == other.Value;
2017-11-04 16:02:37 +01:00
}
/// <summary>
/// Returns the hash code for this instance.
/// </summary>
/// <returns>A 32-bit signed integer hash code.</returns>
public override int GetHashCode()
{
return Value.GetHashCode();
2017-11-04 16:02:37 +01:00
}
/// <summary>
/// Gets a value that indicates whether the two argument values are equal.
/// </summary>
2017-12-15 02:18:55 +01:00
/// <param name="value1">A <see cref="mp_size_t">mp_size_t</see> value.</param>
/// <param name="value2">A <see cref="mp_size_t">mp_size_t</see> value.</param>
2017-11-04 16:02:37 +01:00
/// <returns><c>True</c> if the two values are equal, and <c>False</c> otherwise.</returns>
public static bool operator ==(mp_size_t value1, mp_size_t value2)
{
return value1.Equals(value2);
}
/// <summary>
/// Gets a value that indicates whether the two argument values are different.
/// </summary>
2017-12-15 02:18:55 +01:00
/// <param name="value1">A <see cref="mp_size_t">mp_size_t</see> value.</param>
/// <param name="value2">A <see cref="mp_size_t">mp_size_t</see> value.</param>
2017-11-04 16:02:37 +01:00
/// <returns><c>True</c> if the two values are different, and <c>False</c> otherwise.</returns>
public static bool operator !=(mp_size_t value1, mp_size_t value2)
{
return !value1.Equals(value2);
}
}
}