public override ulong ParseUInt64(ReadOnlySpan <char> value) => UnsignedInteger <ulong> .ParseUInt64(value);
public override ushort ParseUInt16(ReadOnlySpan <char> value) => UnsignedInteger <ushort> .ParseUInt16(value);
public override uint ParseUInt32(ReadOnlySpan <char> value) => UnsignedInteger <uint> .ParseUInt32(value);
public override byte ParseByte(ReadOnlySpan <char> value) => UnsignedInteger <byte> .ParseByte(value);
public static ulong ParseUInt64(this ReadOnlySpan<char> value) => UnsignedInteger<ulong>.ParseUInt64(value);
public static uint ParseUInt32(this ReadOnlySpan<char> value) => UnsignedInteger<uint>.ParseUInt32(value);
public static ushort ParseUInt16(this ReadOnlySpan<char> value) => UnsignedInteger<ushort>.ParseUInt16(value);
public static byte ParseByte(this ReadOnlySpan<char> value) => UnsignedInteger<byte>.ParseByte(value);