MCPcopy Create free account
hub / github.com/PCGEx/PCGExtendedToolkit / ToString

Function ToString

Source/PCGExtendedToolkit/Private/PCGExCompare.cpp:13–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11namespace PCGExCompare
12{
13 FString ToString(const EPCGExComparison Comparison)
14 {
15 switch (Comparison)
16 {
17 case EPCGExComparison::StrictlyEqual:
18 return " == ";
19 case EPCGExComparison::StrictlyNotEqual:
20 return " != ";
21 case EPCGExComparison::EqualOrGreater:
22 return " >= ";
23 case EPCGExComparison::EqualOrSmaller:
24 return " <= ";
25 case EPCGExComparison::StrictlyGreater:
26 return " > ";
27 case EPCGExComparison::StrictlySmaller:
28 return " < ";
29 case EPCGExComparison::NearlyEqual:
30 return " ~= ";
31 case EPCGExComparison::NearlyNotEqual:
32 return " !~= ";
33 default: return " ?? ";
34 }
35 }
36
37 FString ToString(const EPCGExBitflagComparison Comparison)
38 {

Callers 15

GetDisplayNameMethod · 0.50
GetDisplayNameMethod · 0.50
GetDisplayNameMethod · 0.50
GetDisplayNameMethod · 0.50
GetDisplayNameMethod · 0.50
GetDisplayNameMethod · 0.50
GetDisplayNameMethod · 0.50
GetDisplayNameMethod · 0.50
GetDisplayNameMethod · 0.50
GetDisplayNameMethod · 0.50
GetDisplayNameMethod · 0.50
GetDisplayNameMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected