This page has been translated automatically.
编程
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::ArrayMap::Iterator Class

Header:#include <UnigineInterpreter.h>

ArrayMap::Iterator Class

Members


Iterator()

Iterator default constructor.

Iterator(const ArrayMap::Iterator & it)

Iterator copy constructor.

Arguments

  • const ArrayMap::Iterator & it - Iterator instance to be copied.

const Variable & get()

Returns iterator's data.

Return value

The iterator's data.

const Variable & key()

Returns iterator's key.

Return value

The iterator's key.

int operator!=(const ArrayMap::Iterator & it)

Iterator not equal comparison.

Arguments

  • const ArrayMap::Iterator & it - The second iterator to be compared with.

Return value

The result of operation.

ArrayMap::Iterator & operator++()

Increases the iterator position (performs pre-increment operation: ++iterator)

Return value

The result of operation.

ArrayMap::Iterator operator++(int )

Increases the iterator position (performs post-increment operation: iterator++)

Arguments

  • int

Return value

The result of operation.

ArrayMap::Iterator operator--(int )

Decreases the iterator position (performs post-decrement operation: iterator--)

Arguments

  • int

Return value

The result of operation.

ArrayMap::Iterator & operator--()

Decreases the iterator position (performs pre-decrement operation: --iterator)

Return value

The result of operation.

ArrayMap::Iterator & operator=(const ArrayMap::Iterator & it)

Assignment operator for the iterator.

Arguments

  • const ArrayMap::Iterator & it - Assignment operator for the iterator.

Return value

The assigned iterator.

int operator==(const ArrayMap::Iterator & it)

Iterator equal comparison.

Arguments

  • const ArrayMap::Iterator & it - The second iterator.

Return value

The result.
Last update: 2017-12-21
Build: ()