Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
General
»
Operator outta
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
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
Rich Text Format componen...
by
AlexTP
[
Today
at 08:37:53 am]
Move a window between Wor...
by
MarkMLl
[
Today
at 08:35:09 am]
the initial method
by
cousinp
[
Today
at 06:15:11 am]
In need of a class/compon...
by
Gustavo 'Gus' Carreno
[
Today
at 05:05:57 am]
Unreliable IDE behaviors
by
Aruna
[
Today
at 03:44:51 am]
Regex for changing compon...
by
n7800
[
Today
at 03:05:46 am]
Forum is so SLOOOW... Aga...
by
Gustavo 'Gus' Carreno
[
Today
at 02:36:36 am]
Problems with debugging
by
backprop
[
Today
at 02:23:16 am]
Named range
by
backprop
[
Today
at 01:38:06 am]
Forum upgrade?
by
MarkMLl
[
Today
at 12:51:30 am]
Memory leak in form with ...
by
Wilko500
[September 07, 2024, 11:57:57 pm]
[Solved]Memory Leak and/o...
by
Wilko500
[September 07, 2024, 09:55:05 pm]
Deleting exe-file not wor...
by
JanRoza
[September 07, 2024, 09:28:06 pm]
[Resolved]TTreeView.Expan...
by
jamie
[September 07, 2024, 08:36:55 pm]
[solved] strange behavior...
by
Joanna
[September 07, 2024, 07:05:22 pm]
I can help to traduce fre...
by
kupferstecher
[September 07, 2024, 07:01:43 pm]
distinct values from very...
by
Zvoni
[September 07, 2024, 06:55:09 pm]
[SOLVED]Global Path: ther...
by
What I can do
[September 07, 2024, 06:10:42 pm]
Some problems with exampl...
by
wp
[September 07, 2024, 05:51:39 pm]
Memory Leak with CORBA In...
by
janasoft
[September 07, 2024, 05:15:53 pm]
[Solved] What is wrong wi...
by
jamie
[September 07, 2024, 04:13:35 pm]
Animated Gif and Animated...
by
Fred vS
[September 07, 2024, 03:17:19 pm]
IDE Behaviour: By Design?...
by
alpine
[September 07, 2024, 08:22:36 am]
LibreOffices' Base
by
egsuh
[September 07, 2024, 03:10:33 am]
Lazarus IDE Windows 64 lo...
by
wp
[September 06, 2024, 11:40:41 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Operator outta (Read 733 times)
domasz
Hero Member
Posts: 513
Operator outta
«
on:
August 01, 2024, 09:33:37 am »
So we have operator in. We can use it like:
Code: Pascal
[Select]
[+]
[-]
if
5
in
[
1
,
3
,
5
]
Then we should have outta, like:
Code: Pascal
[Select]
[+]
[-]
if
5
outta
[
1
,
3
,
4
]
Much cleaner than
Code: Pascal
[Select]
[+]
[-]
if
not
(
5
in
[
1
,
3
,
4
]
)
Logged
440bx
Hero Member
Posts: 4471
Re: Operator outta
«
Reply #1 on:
August 01, 2024, 10:05:39 am »
if something like that were to be considered, I'd much prefer something along the lines of:
Code: Pascal
[Select]
[+]
[-]
if
5
notin
[
1
,
3
,
4
]
then
{ whatever }
;
Logged
(FPC v3.0.4 and Lazarus 1.8.2) or (FPC v3.2.2 and Lazarus v3.2) on Windows 7 SP1 64bit.
domasz
Hero Member
Posts: 513
Re: Operator outta
«
Reply #2 on:
August 01, 2024, 10:17:24 am »
That's even better. We need this feature now! It's impossible to write any program in FP without this feature!!11
Logged
BildatBoffin
New Member
Posts: 26
Re: Operator outta
«
Reply #3 on:
August 01, 2024, 11:39:05 am »
Why not just the not-in combo
Code: Pascal
[Select]
[+]
[-]
if
5
not
in
[
1
,
3
,
4
]
Logged
Kays
Hero Member
Posts: 598
Whasup!?
Re: Operator outta
«
Reply #4 on:
August 01, 2024, 11:46:40 am »
If
Code: Pascal
[Select]
[+]
[-]
if
not
bothers you, you may want to program in Ruby or other languages that have the keyword
Code: Ruby
[Select]
[+]
[-]
unless
There is of course the option to rephrase an expression:
Code: Pascal
[Select]
[+]
[-]
if
[
5
]
*
[
1
,
2
,
3
]
=
[
]
then
Logged
Yours Sincerely
Kai Burghardt
domasz
Hero Member
Posts: 513
Re: Operator outta
«
Reply #5 on:
August 01, 2024, 12:02:45 pm »
"not in" might be harder to introduce than "notin" since "not" already is used for something else.
For me "unless" is kinda weird.
Code: Pascal
[Select]
[+]
[-]
if
[
5
]
*
[
1
,
2
,
3
]
=
[
]
then
That's too mathy
Logged
wp
Hero Member
Posts: 12266
Re: Operator outta
«
Reply #6 on:
August 01, 2024, 01:11:09 pm »
What's wrong with
Code: Pascal
[Select]
[+]
[-]
if
not
(
5
in
[
1
,
2
,
3
]
)
? Having to type two backets? Come on...
Logged
domasz
Hero Member
Posts: 513
Re: Operator outta
«
Reply #7 on:
August 01, 2024, 01:19:11 pm »
Brackets make things harder to read. In this example it's easy:
Code: Pascal
[Select]
[+]
[-]
if
not
(
5
in
[
1
,
2
,
3
]
)
but it can be more complicated:
Code: Pascal
[Select]
[+]
[-]
if
(
(
not
(
5
in
[
1
,
2
,
3
]
)
or
(
6
>
5
)
or
(
7
=
fun
(
8
)
)
)
and
(
1
=
2
)
With operator "notin" and a few others we could simplify a lot or expressions.
Logged
Khrys
Jr. Member
Posts: 77
Re: Operator outta
«
Reply #8 on:
August 01, 2024, 01:23:08 pm »
If you really,
really
want to do this...
Code: Pascal
[Select]
[+]
[-]
{$macro on}
{$define outta := xor}
type
TByteSet
=
set
of
Byte
;
operator
xor
(
A
:
Integer
;
B
:
TByteSet
)
:
Boolean
;
inline
;
begin
Result
:
=
not
(
A
in
B
)
;
end
;
function
Test
(
)
:
Boolean
;
begin
Result
:
=
5
outta
[
1
,
3
,
4
]
;
end
;
Logged
domasz
Hero Member
Posts: 513
Re: Operator outta
«
Reply #9 on:
August 01, 2024, 10:38:17 pm »
Thanks, Khrys. That's very nice!
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
General
»
Operator outta
TinyPortal
© 2005-2018