Незначительные изменения в именах параметров в стандартном модуле

This commit is contained in:
Mikhalkovich Stanislav 2021-01-16 23:15:45 +03:00
parent 2dca79f68f
commit a746b5c76c
10 changed files with 2275 additions and 2260 deletions

View file

@ -15,7 +15,7 @@ internal static class RevisionClass
public const string Major = "3";
public const string Minor = "7";
public const string Build = "2";
public const string Revision = "2799";
public const string Revision = "2803";
public const string MainVersion = Major + "." + Minor;
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;

View file

@ -1,4 +1,4 @@
%MINOR%=7
%REVISION%=2799
%REVISION%=2803
%COREVERSION%=2
%MAJOR%=3

View file

@ -2,7 +2,7 @@
// This CSharp output file generated by Gardens Point LEX
// Version: 1.1.3.301
// Machine: DESKTOP-G8V08V4
// DateTime: 07.01.2021 12:07:22
// DateTime: 16.01.2021 9:11:32
// UserName: ?????????
// GPLEX input file <ABCPascal.lex>
// GPLEX frame file <embedded resource>

File diff suppressed because it is too large Load diff

View file

@ -300,6 +300,8 @@ script=

View file

@ -1 +1 @@
3.7.2.2799
3.7.2.2803

View file

@ -1 +1 @@
!define VERSION '3.7.2.2799'
!define VERSION '3.7.2.2803'

View file

@ -176,6 +176,10 @@ function Av(Self: sequence of real): real; extensionmethod := Self.Average;
/// Возвращает количество элементов последовательности
function Cnt<T>(Self: sequence of T): integer; extensionmethod := Self.Count;
/// Возвращает количество элементов последовательности, удовлетворяющих условию
function Cnt<T>(Self: sequence of T; pred: T->boolean): integer; extensionmethod := Self.Count(pred);
/// Возвращает количество элементов последовательности, равных заданному значению
function Cnt<T>(Self: sequence of T; elem: T): integer; extensionmethod := Self.CountOf(elem);
function Ord<T>(Self: sequence of T): sequence of T; extensionmethod := Self.Order;
function OrdD<T>(Self: sequence of T): sequence of T; extensionmethod := Self.OrderDescending;

View file

@ -1421,7 +1421,7 @@ procedure RmDir(s: string);
/// Создает каталог. Возвращает True, если каталог успешно создан
function CreateDir(s: string): boolean;
/// Удаляет файл. Если файл не может быть удален, то возвращает False
function DeleteFile(s: string): boolean;
function DeleteFile(fname: string): boolean;
/// Возвращает текущий каталог
function GetCurrentDir: string;
/// Удаляет каталог. Возвращает True, если каталог успешно удален
@ -7858,11 +7858,11 @@ begin
end;
end;
function DeleteFile(s: string): boolean;
function DeleteFile(fname: string): boolean;
begin
try
Result := True;
&File.Delete(s);
&File.Delete(fname);
except
Result := False;
end;

View file

@ -176,6 +176,10 @@ function Av(Self: sequence of real): real; extensionmethod := Self.Average;
/// Возвращает количество элементов последовательности
function Cnt<T>(Self: sequence of T): integer; extensionmethod := Self.Count;
/// Возвращает количество элементов последовательности, удовлетворяющих условию
function Cnt<T>(Self: sequence of T; pred: T->boolean): integer; extensionmethod := Self.Count(pred);
/// Возвращает количество элементов последовательности, равных заданному значению
function Cnt<T>(Self: sequence of T; elem: T): integer; extensionmethod := Self.CountOf(elem);
function Ord<T>(Self: sequence of T): sequence of T; extensionmethod := Self.Order;
function OrdD<T>(Self: sequence of T): sequence of T; extensionmethod := Self.OrderDescending;