This commit is contained in:
Mikhalkovich Stanislav 2024-08-26 09:11:08 +03:00
parent e456ad528e
commit 7face043cf
6 changed files with 17 additions and 5 deletions

View file

@ -15,7 +15,7 @@ internal static class RevisionClass
public const string Major = "3";
public const string Minor = "9";
public const string Build = "0";
public const string Revision = "3530";
public const string Revision = "3531";
public const string MainVersion = Major + "." + Minor;
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;

View file

@ -1,4 +1,4 @@
%COREVERSION%=0
%REVISION%=3530
%MINOR%=9
%REVISION%=3531
%COREVERSION%=0
%MAJOR%=3

View file

@ -1 +1 @@
3.9.0.3530
3.9.0.3531

View file

@ -1 +1 @@
!define VERSION '3.9.0.3530'
!define VERSION '3.9.0.3531'

View file

@ -10984,6 +10984,12 @@ begin
Result := new HashSet<T>(Self);
end;
/// Возвращает множество по данной последовательности
function ToSet<T>(Self: sequence of T): HashSet<T>; extensionmethod;
begin
Result := new HashSet<T>(Self);
end;
/// Возвращает множество SortedSet по данной последовательности
function ToSortedSet<T>(Self: sequence of T): SortedSet<T>; extensionmethod;
begin

View file

@ -10984,6 +10984,12 @@ begin
Result := new HashSet<T>(Self);
end;
/// Возвращает множество по данной последовательности
function ToSet<T>(Self: sequence of T): HashSet<T>; extensionmethod;
begin
Result := new HashSet<T>(Self);
end;
/// Возвращает множество SortedSet по данной последовательности
function ToSortedSet<T>(Self: sequence of T): SortedSet<T>; extensionmethod;
begin