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
Lazarus 3.9.9 Variable Wa...
by
Martin_fr
[
Today
at 08:48:26 pm]
Autentication Oracle
by
CapitaoVirgulinoFerreira
[
Today
at 08:28:20 pm]
Watchlist, order of the w...
by
Martin_fr
[
Today
at 08:13:55 pm]
SVG thumbnails
by
Pe3s
[
Today
at 07:54:09 pm]
How to 'Hello world' on l...
by
FramX
[
Today
at 07:39:07 pm]
Difference between TSpeed...
by
Hansvb
[
Today
at 07:29:23 pm]
Lazarus Release Candidate...
by
dedrasta
[
Today
at 07:12:42 pm]
QT5 ide tooltips
by
zeljko
[
Today
at 07:01:18 pm]
[SOLVED] TLabeledEdit.Edi...
by
jipété
[
Today
at 06:57:02 pm]
Feature announcement: Fun...
by
Thaddy
[
Today
at 06:46:59 pm]
CORDIC algorithms
by
Thaddy
[
Today
at 06:38:27 pm]
(new Topic) i can't inata...
by
Thaddy
[
Today
at 06:12:14 pm]
i can't inatall Dam dialo...
by
wp
[
Today
at 05:55:22 pm]
list of files in director...
by
TRon
[
Today
at 05:51:40 pm]
Compare strange character...
by
cdbc
[
Today
at 05:03:52 pm]
Anyone interested in test...
by
ad1mt
[
Today
at 04:12:03 pm]
Online Package Manager
by
paweld
[
Today
at 04:07:24 pm]
How to stay in the invali...
by
Hartmut
[
Today
at 03:58:41 pm]
How to convert Real to Bi...
by
ad1mt
[
Today
at 03:22:00 pm]
Flock of Birds (boids) Wi...
by
MarkMLl
[
Today
at 02:08:05 pm]
[SOLVED]Bash commands and...
by
johnathan
[
Today
at 11:58:02 am]
[SOLVED] How to detect if...
by
Hartmut
[
Today
at 11:46:07 am]
TStringGrid with stretche...
by
wp
[
Today
at 11:42:30 am]
fpconnect (from sockets u...
by
MarkMLl
[
Today
at 10:49:53 am]
Form creator for editing ...
by
krzynio
[
Today
at 10:13:48 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Set of Enum in generic (Read 340 times)
Okoba
Sr. Member
Posts: 478
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: 9367
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: 478
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: 9367
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: 478
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