Navigation
API > API/Plugins > API/Plugins/NetcodeUnitTest > API/Plugins/NetcodeUnitTest/NUTDebug
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Takes an array of bytes, and generates a bit-based/binary dump string out of them, optionally including byte offsets also (intended for debugging in the log window) | NUTUtilDebug.h | ||
static FString BitDump
(
const FString& InString, |
Version of the above bit-dump function, which takes a string as input | NUTUtilDebug.h | |
static FString BitDump
(
const uint8* InBytes, |
Version of the above bit-dump function, which takes a byte pointer and length as input | NUTUtilDebug.h |
BitDump(const TArray< uint8 > &, bool, bool)
Description
Takes an array of bytes, and generates a bit-based/binary dump string out of them, optionally including byte offsets also (intended for debugging in the log window)
| Name | BitDump |
| Type | function |
| Header File | /Engine/Plugins/NetcodeUnitTest/NetcodeUnitTest/Source/NetcodeUnitTest/Public/NUTUtilDebug.h |
| Include Path | #include "NUTUtilDebug.h" |
| Source | /Engine/Plugins/NetcodeUnitTest/NetcodeUnitTest/Source/NetcodeUnitTest/Private/NUTUtilDebug.cpp |
static FString BitDump
(
const TArray < uint8 > & InBytes,
bool bDumpOffset,
bool bLSBFirst
)
Returns the hex dump, including line terminators
Parameters
| Name | Remarks |
|---|---|
| InBytes | The array of bytes to be dumped |
| bDumpOffset | Whether or not to dump offset margins for bit rows/columns |
| bLSBFirst | Whether or not the Least Significant Bit should be printed first, instead of last |
BitDump(const FString &, bool, bool)
Description
Version of the above bit-dump function, which takes a string as input
| Name | BitDump |
| Type | function |
| Header File | /Engine/Plugins/NetcodeUnitTest/NetcodeUnitTest/Source/NetcodeUnitTest/Public/NUTUtilDebug.h |
| Include Path | #include "NUTUtilDebug.h" |
static FString BitDump
(
const FString & InString,
bool bDumpOffset,
bool bLSBFirst
)
BitDump(const uint8 *, const uint32, bool, bool)
Description
Version of the above bit-dump function, which takes a byte pointer and length as input
| Name | BitDump |
| Type | function |
| Header File | /Engine/Plugins/NetcodeUnitTest/NetcodeUnitTest/Source/NetcodeUnitTest/Public/NUTUtilDebug.h |
| Include Path | #include "NUTUtilDebug.h" |
static FString BitDump
(
const uint8 * InBytes,
const uint32 InBytesLen,
bool bDumpOffset,
bool bLSBFirst
)