TBitArray::InsertUninitialized

Inserts space for multiple bits into the array, starting at the given index.

Windows
MacOS
Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Containers/BitArray.h

Include

#include "Containers/BitArray.h"

Syntax

void InsertUninitialized
(
    int32 Index,
    int32 NumBitsToAdd
)

Remarks

Inserts space for multiple bits into the array, starting at the given index. The inserted bits are set to arbitrary values and should be written using SetRange or otherwise before being read.

Parameters

Parameter

Description

Index

The index at which to add; must be 0 <= Index <= Num().

NumBitsToAdd

The number of bits to add. Must be >= 0.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss