Difference between revisions of "Operator"

From Free Pascal wiki
Jump to navigationJump to search
(Created page with "{{Operator}} The reserved word <syntaxhighlight lang="pascal" enclose="none">operator</syntaxhighlight> is used when making an Operator overloading|opera...")
 
Line 4: Line 4:
 
The [[Reserved word|reserved word]] <syntaxhighlight lang="pascal" enclose="none">operator</syntaxhighlight> is used when making an [[Operator overloading|operator overloading]].
 
The [[Reserved word|reserved word]] <syntaxhighlight lang="pascal" enclose="none">operator</syntaxhighlight> is used when making an [[Operator overloading|operator overloading]].
 
This allows you to do some operations with the self-defined types.
 
This allows you to do some operations with the self-defined types.
 +
 +
== see also ==
 +
* [[Fractions]]

Revision as of 20:54, 19 April 2019

Deutsch (de) English (en) suomi (fi)


The reserved word operator is used when making an operator overloading. This allows you to do some operations with the self-defined types.

see also