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

Method SkipWhitespace

Source/Engine/Utilities/HtmlParser.cs:371–375  ·  view source on GitHub ↗

Moves the current position to the next character that is not whitespace.

()

Source from the content-addressed store, hash-verified

369 /// Moves the current position to the next character that is not whitespace.
370 /// </summary>
371 private void SkipWhitespace()
372 {
373 while (!EOF && char.IsWhiteSpace(Peek()))
374 Move();
375 }
376
377 /// <summary>
378 /// Normalizes the current position. This is primarily for handling conditions where IndexOf(), etc. return negative values when the item being sought was not found.

Callers

nothing calls this directly

Calls 3

IsWhiteSpaceMethod · 0.80
PeekFunction · 0.50
MoveFunction · 0.50

Tested by

no test coverage detected