MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / IsWhiteSpace

Method IsWhiteSpace

Source/Engine/Utilities/TextProcessing.h:52–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50
51 public:
52 bool IsWhiteSpace() const
53 {
54 return *this == SeparatorData('\r', '\n')
55 || *this == SeparatorData('\n')
56 || *this == SeparatorData('\t')
57 || *this == SeparatorData(' ');
58 }
59
60 public:
61 bool operator==(const SeparatorData& other) const

Callers 6

ParseAttributeValueMethod · 0.80
SkipWhitespaceMethod · 0.80
ProcessMethod · 0.80
DetermineTypeMethod · 0.80
OnCharInputMethod · 0.80
ParseMethod · 0.80

Calls 1

SeparatorDataClass · 0.85

Tested by

no test coverage detected