docs.unity3d.com
    Show / Hide Table of Contents

    Interface IXRFilterList<T>

    A list of items.

    Namespace: UnityEngine.XR.Interaction.Toolkit
    Syntax
    public interface IXRFilterList<T>
    Type Parameters
    Name Description
    T

    The type of the items in this list.

    Properties

    count

    The number of items in this list.

    Declaration
    int count { get; }
    Property Value
    Type Description
    Int32

    Methods

    Add(T)

    Adds the given item to the end of this list.

    Declaration
    void Add(T item)
    Parameters
    Type Name Description
    T item

    The item to add.

    Clear()

    Removes all items from this list.

    Declaration
    void Clear()

    GetAll(List<T>)

    Returns all items into List results.

    Declaration
    void GetAll(List<T> results)
    Parameters
    Type Name Description
    List<T> results

    List to receive all items.

    Remarks

    Clears results before adding to it.

    GetAt(Int32)

    Returns the item at index in this list.

    Declaration
    T GetAt(int index)
    Parameters
    Type Name Description
    Int32 index

    Index of the item to return. Must be smaller than count and not negative.

    Returns
    Type Description
    T

    Returns the item at the given index.

    MoveTo(T, Int32)

    Moves the given item in this list. If the given item is not in this list, this can be used to insert the item at the specified index.

    Declaration
    void MoveTo(T item, int newIndex)
    Parameters
    Type Name Description
    T item

    The item to move or add.

    Int32 newIndex

    New index of the item.

    Remove(T)

    Removes the given item from this list.

    Declaration
    bool Remove(T item)
    Parameters
    Type Name Description
    T item

    The item to remove.

    Returns
    Type Description
    Boolean

    Returns true if item was removed from the list. Otherwise, returns false if the item was not found.

    Back to top
    Copyright © 2023 Unity Technologies — Terms of use
    • Legal
    • Privacy Policy
    • Cookies
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)
    "Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
    Generated by DocFX on 18 October 2023