Exclude
Adam Boduch
Exclude
Moduł: System
program Foo;
{$APPTYPE CONSOLE}
type
TSet = set of Char; // deklaracja zbioru
var
MySet : TSet;
begin
MySet := ['A', 'B', 'C'];
Exclude(MySet, 'A'); // usuwanie elementu 'A'
MySet := MySet - ['B']; // usuwanie elementu 'B' - wolne!
end.
Zobacz też: