Struct TMP_TextProcessingStack<T>
Structure used to track XML tags of various types.
Namespace: TMPro
Syntax
public struct TMP_TextProcessingStack<T>
Type Parameters
Constructors
TMP_TextProcessingStack(T[])
Constructor to create a new item stack.
Declaration
public TMP_TextProcessingStack(T[] stack)
Parameters
| Type |
Name |
Description |
| T[] |
stack |
|
TMP_TextProcessingStack(Int32)
Constructor for a new item stack with the given capacity.
Declaration
public TMP_TextProcessingStack(int capacity)
Parameters
| Type |
Name |
Description |
| Int32 |
capacity |
|
TMP_TextProcessingStack(Int32, Int32)
Declaration
public TMP_TextProcessingStack(int capacity, int rolloverSize)
Parameters
| Type |
Name |
Description |
| Int32 |
capacity |
|
| Int32 |
rolloverSize |
|
Fields
index
Declaration
Field Value
itemStack
Declaration
Field Value
Properties
Count
Declaration
public int Count { get; }
Property Value
current
Returns the current item on the stack.
Declaration
public T current { get; }
Property Value
rolloverSize
Declaration
public int rolloverSize { get; set; }
Property Value
Methods
Add(T)
Function to add a new item to the stack.
Declaration
Parameters
| Type |
Name |
Description |
| T |
item |
|
Clear()
Function to clear and reset stack to first item.
Declaration
CurrentItem()
Declaration
Returns
Peek()
Declaration
Returns
Pop()
Declaration
Returns
PreviousItem()
Function to retrieve the previous item without affecting the stack.
Declaration
Returns
Push(T)
Declaration
Parameters
| Type |
Name |
Description |
| T |
item |
|
Remove()
Function to retrieve an item from the stack.
Declaration
Returns
SetDefault(T)
Function to set the first item on the stack and reset index.
Declaration
public void SetDefault(T item)
Parameters
| Type |
Name |
Description |
| T |
item |
|