docs.unity.cn
    Show / Hide Table of Contents

    Struct NativeHashSet<T>.ParallelWriter

    A parallel writer for a NativeHashSet.

    Namespace: Unity.Collections
    Syntax
    [NativeContainerIsAtomicWriteOnly]
    public struct ParallelWriter
    Remarks

    Use AsParallelWriter() to create a parallel writer for a set.

    Properties

    Capacity

    The number of values that fit in the current allocation.

    Declaration
    public readonly int Capacity { get; }
    Property Value
    Type Description
    Int32

    The number of values that fit in the current allocation.

    Methods

    Add(T)

    Adds a new value (unless it is already present).

    Declaration
    public bool Add(T item)
    Parameters
    Type Name Description
    T item

    The value to add.

    Returns
    Type Description
    Boolean

    True if the value is not already present.

    Back to top Copyright © 2022 Unity Technologies
    Generated by DocFX
    on Tuesday, June 14, 2022
    Terms of use