From 13b3071d80bcabb50a23fefbda43b87aca633b2e Mon Sep 17 00:00:00 2001 From: Mikhalkovich Stanislav Date: Mon, 28 Oct 2024 22:42:17 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B7=D0=B0=D0=BA=D0=BE=D0=BC=D0=BC=D0=B5?= =?UTF-8?q?=D0=BD=D1=82=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BB=20extensions?= =?UTF-8?q?=20=D0=BF=D1=80=D0=B5=D0=BE=D0=B1=D1=80=D0=B0=D0=B7=D0=BE=D0=B2?= =?UTF-8?q?=D0=B0=D0=BD=D0=B8=D1=8F=20arr=20to=20set.=20=D0=9D=D0=B0=D0=B4?= =?UTF-8?q?=D0=B5=D1=8E=D1=81=D1=8C=20=D0=B2=20=D0=BD=D0=BE=D0=B2=D0=BE?= =?UTF-8?q?=D0=B9=20=D1=80=D0=B5=D0=B0=D0=BB=D0=B8=D0=B7=D0=B0=D1=86=D0=B8?= =?UTF-8?q?=D0=B8=20=D0=B2=D1=81=D1=91=20=D0=B8=D1=81=D0=BF=D1=80=D0=B0?= =?UTF-8?q?=D0=B2=D0=B8=D1=82=D1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/Lib/PABCExtensions.pas | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/Lib/PABCExtensions.pas b/bin/Lib/PABCExtensions.pas index 2f47a11ac..ad6c12794 100644 --- a/bin/Lib/PABCExtensions.pas +++ b/bin/Lib/PABCExtensions.pas @@ -411,7 +411,7 @@ end;} ///-- function operator implicit(a: array of integer): set of integer; extensionmethod := TypedSet.InitBy(a); -///-- +{///-- function operator implicit(a: array of real): set of real; extensionmethod := TypedSet.InitBy(a); ///-- function operator implicit(a: array of string): set of string; extensionmethod := TypedSet.InitBy(a); @@ -433,6 +433,7 @@ function operator implicit(a: array of BigInteger): set of BigInteger; extension function operator implicit(a: array of decimal): set of decimal; extensionmethod := TypedSet.InitBy(a); ///-- function operator implicit(a: array of single): set of single; extensionmethod := TypedSet.InitBy(a); +} ///-- function operator implicit(a: array of T): set of T; extensionmethod := TypedSet.InitBy(a);