UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
FMeshElementContainer::FElementIDs Class Reference

#include <MeshElementContainer.h>

Classes

class  FConstIterator
 

Public Member Functions

 FElementIDs (const TBitArray<> &InArray)
 
FConstIterator CreateConstIterator () const
 
FConstIterator begin () const
 
FConstIterator end () const
 

Detailed Description

This is a special type of iterator which returns successive IDs of valid elements, rather than the elements themselves. It is designed to be used with a range-for:

for (const int32 VertexIndex : GetVertices().GetElementIDs())
{
    DoSomethingWith(VertexIndex);
}

Constructor & Destructor Documentation

◆ FElementIDs()

FMeshElementContainer::FElementIDs::FElementIDs ( const TBitArray<> &  InArray)
inlineexplicit

Member Function Documentation

◆ begin()

FConstIterator FMeshElementContainer::FElementIDs::begin ( ) const
inline

◆ CreateConstIterator()

FConstIterator FMeshElementContainer::FElementIDs::CreateConstIterator ( ) const
inline

◆ end()

FConstIterator FMeshElementContainer::FElementIDs::end ( ) const
inline

The documentation for this class was generated from the following file: