Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FHistogram
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FString DumpToJsonString2 () |
Same as DumpToJsonString2 but uses a DefaultConvertBinToLabel. | ProfilingDebugging/Histogram.h | |
FString DumpToJsonString2
(
TFunctionRef< FString(double, double)> ConvertBinToLabel |
Returns a string in a Json format: [{"BinName":{"Count":Count,"Sum":Sum}},...]. | ProfilingDebugging/Histogram.h |
DumpToJsonString2()
Description
Same as DumpToJsonString2 but uses a DefaultConvertBinToLabel.
| Name | DumpToJsonString2 |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/ProfilingDebugging/Histogram.h |
| Include Path | #include "ProfilingDebugging/Histogram.h" |
| Source | /Engine/Source/Runtime/Core/Private/ProfilingDebugging/Histogram.cpp |
FString DumpToJsonString2() const
DumpToJsonString2(TFunctionRef< FString(double, double)>)
Description
Returns a string in a Json format: [{"BinName":{"Count":Count,"Sum":Sum}},...]. Bucket name is constructed by calling ConvertBinToLabel on the MinValue and UpperBound for each bin. Convert function is used to allow the bin range, which is stored as a double, to be printed prettily.
| Name | DumpToJsonString2 |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/ProfilingDebugging/Histogram.h |
| Include Path | #include "ProfilingDebugging/Histogram.h" |
| Source | /Engine/Source/Runtime/Core/Private/ProfilingDebugging/Histogram.cpp |
FString DumpToJsonString2
(
TFunctionRef < FString> ConvertBinToLabel
) const