Difference between revisions of "Of"

From Lazarus wiki
Jump to navigationJump to search
m
m (substitute legacy syntaxhighlight syntax)
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
{{of}}
 
{{of}}
<br>
 
<br>
 
Of is [[Reserved word|reserved word]].
 
  
 +
<syntaxhighlight lang="pascal" inline>of</syntaxhighlight> is a [[Reserved word|reserved word]].
  
= [[Array]] of =
+
== occurences ==
  
= [[Case]] of end =
+
The word <syntaxhighlight lang="pascal" inline>of</syntaxhighlight> is used at several places.
  
= [[Class]] of =
+
* separating the base type of a structured data type
 
+
** [[Array|<syntaxhighlight lang="pascal" inline>array</syntaxhighlight>]] <syntaxhighlight lang="pascal" inline>of basetype</syntaxhighlight>
= [[File]] of =
+
** [[File|<syntaxhighlight lang="pascal" inline>file</syntaxhighlight>]] <syntaxhighlight lang="pascal" inline>of basetype</syntaxhighlight>
 
+
** [[Set|<syntaxhighlight lang="pascal" inline>set</syntaxhighlight>]] <syntaxhighlight lang="pascal" inline>of basetype</syntaxhighlight>
= [[Procedure]] of object =
+
* in conjunction with the word [[Case|<syntaxhighlight lang="pascal" inline>case</syntaxhighlight>]] distinguishing between alternatives
 
+
** switch control structure: <syntaxhighlight lang="pascal" inline>case of end</syntaxhighlight>
= [[Case#Variant Record|Record]] case of end =
+
** variant records: [[Case#Variant Record|<syntaxhighlight lang="pascal" inline>record</syntaxhighlight>]] <syntaxhighlight lang="pascal" inline>case of end</syntaxhighlight>
 
+
* specifying class references: [[Class|<syntaxhighlight lang="pascal" inline>class</syntaxhighlight>]] <syntaxhighlight lang="pascal" inline>of</syntaxhighlight>
= [[Set]] of =
+
* specifying references to class [[Method|methods]]: [[Procedure|<syntaxhighlight lang="pascal" inline>procedure</syntaxhighlight>]] <syntaxhighlight lang="pascal" inline>of</syntaxhighlight>

Latest revision as of 07:47, 17 May 2020

Deutsch (de) English (en) suomi (fi) français (fr)

of is a reserved word.

occurences

The word of is used at several places.

  • separating the base type of a structured data type
  • in conjunction with the word case distinguishing between alternatives
    • switch control structure: case of end
    • variant records: record case of end
  • specifying class references: class of
  • specifying references to class methods: procedure of