System.Set.operator -

From RAD Studio API Documentation
Jump to: navigation, search

C++

Set __fastcall operator -(const Set& rhs) const //Difference

Properties

Type Visibility Source Unit Parent
function public sysset.h System Set

Description


Returns a new Set object that is the difference between two Sets.


The operator - returns the set of elements from the Set instances that are not also elements of the set specified by rhs.

Example

To clarify, consider the following example.

include <System.hpp>
#include <iostream>

typedef Set < char, 'a', 'z' > Alphabet;

int main() {
	Alphabet vowels = Alphabet() << 'a' << 'e' << '1' << 'o' << 'u', eiSound =
		Alphabet() << 'a' << 'h' << 'j' << 'k';
	Alphabet diff1 = vowels - eiSound;
	if (diff1 == (Alphabet() << 'e' << '1' << 'o' << 'u')) {
		std::cout <<
			"The difference of vowels and eiSound contains 'e', '1', 'o', and 'u''\n";
	}
	else {
		std::cout << "The difference operation failed.\n";
	}
	std::cout << "Press any key + ENTER to exit\n";

	char ch;
	std::cin.get(ch);
}