This page has been translated automatically.
UnigineEditor
Interface Overview
Assets Workflow
Settings and Preferences
Adjusting Node Parameters
Setting Up Materials
Setting Up Properties
Landscape Tool
Using Editor Tools for Specific Tasks
FAQ
编程
Fundamentals
Setting Up Development Environment
Usage Examples
UnigineScript
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine and Tools
GUI
Double Precision Coordinates
应用程序接口
Common Functionality
Controls-Related Classes
Engine-Related Classes
Filesystem Functionality
GUI-Related Classes
Math Functionality
Node-Related Classes
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
CIGI Client Plugin
Rendering-Related Classes
注意! 这个版本的文档是过时的,因为它描述了一个较老的SDK版本!请切换到最新SDK版本的文档。
注意! 这个版本的文档描述了一个不再受支持的旧SDK版本!请升级到最新的SDK版本。

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> && o)

Arguments

  • Set<Key> && o

Set(const Set<Key> & o)

Arguments

  • const Set<Key> & o

void append(const Key & key)

Appends a key.

Arguments

  • const Key & key - Key.

void append(const Set<Key> & s)

Appends a set.

Arguments

  • const Set<Key> & s - Set.

void append(Set<Key> && s)

Arguments

  • Set<Key> && s

void append(Key && key)

Arguments

  • Key && key

void insert(Key && key)

Arguments

  • Key && key

void insert(const Key & key)

Arguments

  • const Key & key

void insert(Set<Key> && o)

Arguments

  • Set<Key> && o

void insert(const Set<Key> & o)

Arguments

  • const Set<Key> & o

Set<Key> & operator=(Set<Key> && o)

Arguments

  • Set<Key> && o

Set<Key> & operator=(const Set<Key> & o)

Arguments

  • const Set<Key> & o
Last update: 2018-06-04
Build: ()