.insert()
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:
All contributors
- garanews222 total contributions
- BrandonDusch580 total contributions
- KyraThompson68 total contributions
- Christine_Yang271 total contributions
Looking to contribute?
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.