.insert()

Christine_Yang's avatar
Published May 4, 2022Updated Dec 21, 2022
Contribute to Docs

Values can be inserted into a declared set with the .insert() method.

Syntax

setName.insert(value);
  • value is the element to be inserted; it must be of the same data type as the set it is being inserted into.

Codebyte Example

The following codebyte example creates a grades set of type int and inserts several values before being printed:

Code
Output
Loading...

All contributors

Contribute to Docs

Learn C++ on Codecademy