1. Home
  2. Computing & Technology
  3. Delphi Programming
Glossary|Tips/Tricks|FREE App/VCL|Best'O'Net|Books|Link Back

Delphi Programming RTL Reference|By Category|Alphabetically|By Unit
 

Include

unit
System
category
set handling routines

declaration
procedure Include(var S: set of T; element:T);

description
Adds an element to a set.

The expression Include(S,I) corresponds to S := S + [I] but the Include procedure generates more efficient code.

example
//Example 1
type 
  TExperience=(Novice, Beginner, Intermediate, Advanced, Master, DelphiGuide);
  TExpSet = Set of TExperience;
  
var aDev : TExpSet;
	
aDev := [Beginner, Advanced];

Include(aDev, DelphiGuide);
// DelphiGuide in aDev returns TRUE

in real code
Ordinal and Enumerated Data Types
Learn about Delphi's support for ordinal types. Extend Delphi's built-in types by constructing your own types.

see also
Exclude,


 Free Delphi code snippet inside every Delphi Newsletter!
Subscribe to the Newsletter
Name
Email

 Got some code to share? Got a question? Need some help?
Explore Delphi Programming
About.com Special Features

Stay connected and entertained with reviews on tips on the latest HDTVs, cellphones and more. More >

Easy ways to connect two computers for networking purposes. More >

  1. Home
  2. Computing & Technology
  3. Delphi Programming

©2009 About.com, a part of The New York Times Company.

All rights reserved.