Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Free Pascal
»
General
(Moderators:
FPK
,
Tomas Hajny
) »
Set of Enum in generic
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
IRC channel
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Online Package Manager
by
lainz
[
Today
at 04:49:48 pm]
Compile loongarch64 appli...
by
myisjwj
[
Today
at 04:47:58 pm]
Stringgrid check only one...
by
morknot
[
Today
at 04:15:33 pm]
likely/unlikely — will it...
by
440bx
[
Today
at 03:57:50 pm]
BGRABitmap - showcase -
by
Mongkey
[
Today
at 03:07:14 pm]
Automatize build system
by
Чебурашка
[
Today
at 02:17:43 pm]
Possible bug with range c...
by
BSaidus
[
Today
at 02:13:39 pm]
[SOLVED] Watchlist, order...
by
Hansvb
[
Today
at 02:12:37 pm]
Advance Record operators ...
by
ad1mt
[
Today
at 01:08:55 pm]
TWSButton descendance
by
Martin_fr
[
Today
at 12:58:46 pm]
Using tabs instead of spa...
by
Martin_fr
[
Today
at 12:38:52 pm]
New version of BGRABitmap
by
circular
[
Today
at 12:05:38 pm]
regex/and
by
Martin_fr
[
Today
at 10:54:49 am]
Interesting work on Unive...
by
MarkMLl
[
Today
at 09:56:59 am]
how to change color of a ...
by
KodeZwerg
[
Today
at 09:27:12 am]
AI cheetah
by
loaded
[
Today
at 09:26:52 am]
[SOLVED] How to stay in t...
by
egsuh
[
Today
at 03:52:10 am]
LCLVLCPlayer causes 'Exte...
by
Mongkey
[
Today
at 02:39:13 am]
inserting text from clipb...
by
Martin_fr
[
Today
at 01:46:40 am]
Chinese input in edit and...
by
myisjwj
[
Today
at 01:28:21 am]
Fpcupdeluxe
by
Tony Stone
[
Today
at 12:20:48 am]
how to debug a CGI from L...
by
Martin_fr
[December 07, 2023, 11:29:31 pm]
eratosthenes sieve homewo...
by
Bart
[December 07, 2023, 10:18:44 pm]
Lazarus 3.9.9 Variable Wa...
by
Martin_fr
[December 07, 2023, 06:37:27 pm]
[SOLVED] SVG thumbnails
by
Pe3s
[December 07, 2023, 05:20:16 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Set of Enum in generic (Read 348 times)
Okoba
Sr. Member
Posts: 479
Set of Enum in generic
«
on:
October 01, 2023, 06:23:20 pm »
Is there a way to declare a new set of an enum in a generic function? This function only specializes with enum types and I do not want to make a set for each.
Code: Pascal
[Select]
[+]
[-]
type
TEnum
=
(
A
,
B
,
C
)
;
procedure
Test<T>
(
E
:
T
)
;
type
S1
=
set
of
TEnum
;
S2
=
set
of
T
;
//Error
begin
end
;
Logged
Martin_fr
Administrator
Hero Member
Posts: 9382
Debugger - SynEdit - and more
Re: Set of Enum in generic
«
Reply #1 on:
October 01, 2023, 06:25:41 pm »
Maybe
Code: Pascal
[Select]
[+]
[-]
S2
=
set
of
low
(
t
)
..
high
(
t
)
;
Logged
From the wiki:
Ide Tools, Code completion and more
/
IDE cool features
/
Debugger Status
Okoba
Sr. Member
Posts: 479
Re: Set of Enum in generic
«
Reply #2 on:
October 01, 2023, 06:27:55 pm »
That works!
Should I report the first one as an issue?
Logged
Martin_fr
Administrator
Hero Member
Posts: 9382
Debugger - SynEdit - and more
Re: Set of Enum in generic
«
Reply #3 on:
October 01, 2023, 06:29:37 pm »
Quote from: Okoba on October 01, 2023, 06:27:55 pm
That works!
Should I report the first one as an issue?
Some one from the FPC team needs to judge that.
Logged
From the wiki:
Ide Tools, Code completion and more
/
IDE cool features
/
Debugger Status
Okoba
Sr. Member
Posts: 479
Re: Set of Enum in generic
«
Reply #4 on:
October 01, 2023, 06:36:54 pm »
Thank you.
Reported:
https://gitlab.com/freepascal.org/fpc/source/-/issues/40453
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Free Pascal
»
General
(Moderators:
FPK
,
Tomas Hajny
) »
Set of Enum in generic
TinyPortal
© 2005-2018