DisplayClusterHelpers::str::MapToStr

Exports map data to a string Example: {{key1,val1},{key2,val2},{key3,val3}} => "key1=val1 key2=val2 key3=var3"

Windows
MacOS
Linux

References

Module

DisplayCluster

Header

/Engine/Plugins/Runtime/nDisplay/Source/DisplayCluster/Public/Misc/DisplayClusterHelpers.h

Include

#include "Misc/DisplayClusterHelpers.h"

Syntax

namespace DisplayClusterHelpers
{
    namespace str
    {
        template<typename TKey, typename TVal>
        FString DisplayClusterHelpers::str::MapToStr
        (
            const TMap< TKey, TVal > & InData,
            const FString & InPairSeparator,
            const FString & InKeyValSeparator,
            bool bAddQuoutes
        )
    }
}

Remarks

Exports map data to a string Example: {{key1,val1},{key2,val2},{key3,val3}} => "key1=val1 key2=val2 key3=var3"

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