This page has been translated automatically.
Video Tutorials
Interface
Essentials
Advanced
How To
UnigineEditor
Interface Overview
Assets Workflow
Settings and Preferences
Working With Projects
Adjusting Node Parameters
Setting Up Materials
Setting Up Properties
Lighting
Landscape Tool
Sandworm
Using Editor Tools for Specific Tasks
Extending Editor Functionality
Built-in Node Types
Nodes
Objects
Effects
Decals
Light Sources
Geodetics
World Objects
Sound Objects
Pathfinding Objects
Players
Programming
Fundamentals
Setting Up Development Environment
Usage Examples
UnigineScript
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine Tools
GUI
Double Precision Coordinates
API
Common Functionality
Controls-Related Classes
Engine-Related Classes
Filesystem Functionality
GUI-Related Classes
Math Functionality
Node-Related Classes
Objects-Related Classes
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
IG Plugin
CIGIConnector Plugin
Rendering-Related Classes
Content Creation
Content Optimization
Materials
Art Samples
Tutorials
Warning! This version of documentation is OUTDATED, as it describes an older SDK version! Please switch to the documentation for the latest SDK version.
Warning! This version of documentation describes an old SDK version which is no longer supported! Please upgrade to the latest SDK version.

Unigine::Set Class

Header: #include <UnigineSet.h>

A set container template.

Set Class

Members


Set ( ) #

Default constructor that produces an empty set.

Set ( std::initializer_list<Key> list ) #

Arguments

  • std::initializer_list<Key> list

Set ( Set<Key, Allocator> && o ) #

Constructor. Creates a set by copying a source set.

Arguments

  • Set<Key, Allocator> && o - Source set.

Set ( const Set<Key, Allocator> & o ) #

Constructor. Creates a set by copying a source set.

Arguments

  • const Set<Key, Allocator> & o - Source set.

void append ( const Key & key ) #

Appends a key.

Arguments

  • const Key & key - Key.

void append ( Key && key ) #

Appends a key.

Arguments

  • Key && key - Key.

void insert ( Key && key ) #

Inserts a given key into the set.

Arguments

  • Key && key - Key.

void insert ( const Key & key ) #

Inserts a given key into the set.

Arguments

  • const Key & key - Key.

Set<Key, Allocator> & operator= ( const Set<Key, Allocator> & o ) #

Arguments

  • const Set<Key, Allocator> & o

Set<Key, Allocator> & operator= ( Set<Key, Allocator> && o ) #

Arguments

  • Set<Key, Allocator> && o

void append ( const Set<Key, Allocator> & s ) #

Appends a given set to the current one.

Arguments

  • const Set<Key, Allocator> & s - Set.

void append ( Set<Key, Allocator> && s ) #

Appends a given set to the current one.

Arguments

  • Set<Key, Allocator> && s - Set.

void insert ( const Set<Key, Allocator> & o ) #

Inserts a given set into the current one.

Arguments

  • const Set<Key, Allocator> & o - Set.

void insert ( Set<Key, Allocator> && o ) #

Inserts a given set into the current one.

Arguments

  • Set<Key, Allocator> && o - Set.
Last update: 2021-04-29
Build: ()