FInstancedStructStream::ForEach

Iterates over all structs of specified type T and calls Function on each item.

Choose your operating system:

Windows

macOS

Linux

References

Module

StructUtils

Header

/Engine/Plugins/Experimental/StructUtils/Source/StructUtils/Public/InstancedStructStream.h

Include

#include "InstancedStructStream.h"

Syntax

template<typename T, typename TFunc>
void ForEach
(
    TFunc && Function
) const

Remarks

Iterates over all structs of specified type T and calls Function on each item. Usage: Buffer.ForEach( { ... });