Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
FreePhoenix888 committed Feb 18, 2023
2 parents 2be3cf1 + aea9ae3 commit 00608fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace Platform.Data.Doublets.Sequences.Numbers.Raw
/// <seealso cref="IConverter{TSource, TTarget}"/>
public class NumberToLongRawNumberSequenceConverter<TSource, TTarget> : LinksDecoratorBase<TTarget>, IConverter<TSource, TTarget>
where TSource : struct, INumber<TSource>, IComparisonOperators<TSource, TSource, bool>, IShiftOperators<TSource, int, TSource>, IBitwiseOperators<TSource, TSource, TSource>
where TTarget : struct, IUnsignedNumber<TTarget>, IComparisonOperators<TTarget, TTarget, bool>, IShiftOperators<TTarget, int, TTarget>, IBitwiseOperators<TSource, TSource, TSource>
where TTarget : struct, IUnsignedNumber<TTarget>, IComparisonOperators<TTarget, TTarget, bool>, IShiftOperators<TTarget, int, TTarget>, IBitwiseOperators<TTarget, TTarget, TTarget>
{
private static readonly Comparer<TSource> _comparer = Comparer<TSource>.Default;
private static readonly TSource _maximumValue = NumericType<TSource>.MaxValue;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>LinksPlatform's Platform.Data.Doublets.Sequences Class Library</Description>
<Copyright>konard, FreePhoenix888</Copyright>
<AssemblyTitle>Platform.Data.Doublets.Sequences</AssemblyTitle>
<VersionPrefix>0.4.0</VersionPrefix>
<VersionPrefix>0.5.0</VersionPrefix>
<Authors>konard, FreePhoenix888</Authors>
<TargetFramework>net7</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
Expand All @@ -24,7 +24,7 @@
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<LangVersion>latest</LangVersion>
<PackageReleaseNotes>LongConverter generic type constraints are changed.</PackageReleaseNotes>
<PackageReleaseNotes>NumberToLongRawNumberSequenceConverter generyc type constraints are changed.</PackageReleaseNotes>
<Nullable>enable</Nullable>
</PropertyGroup>

Expand Down

0 comments on commit 00608fa

Please sign in to comment.