classref: Sync with current master branch, fix members markup parsing

This commit is contained in:
Rémi Verschelde
2017-10-21 13:55:03 +02:00
parent 1cb5a4b5ab
commit b5f08bfa22
127 changed files with 2951 additions and 999 deletions

View File

@@ -14,5 +14,24 @@ VisualScriptIterator
Brief Description
-----------------
Steps through items in a given input.
Description
-----------
This node steps through each item in a given input. Input can be any sequence data type, such as an :ref:`Array<class_array>` or :ref:`String<class_string>`. When each item has been processed, execution passed out the ``exit`` Sequence port.
**Input Ports:**
- Sequence: ``for (elem) in (input)``
- Data (variant): ``input``
**Output Ports:**
- Sequence: ``each``
- Sequence: ``exit``
- Data (variant): ``elem``