2.2.7.9.4 oset::GetSize
Contents
Description
Return the size of the set
Syntax
int GetSize()
Parameters
Return
Return the size of the set
Examples
EX1
void set_GetSize_ex() { oset<string> s1; s1.Insert("hello"); s1.Insert("Hello"); s1.Insert("world"); out_int("size=", s1.GetSize()); }