Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
PrecedingSiblingDocOrderIterator.cs
Go to the documentation of this file.
3
5
8{
10
12
14
15 private bool _needFirst;
16
17 private bool _useCompPos;
18
20
29
30 public bool MoveNext()
31 {
32 if (_needFirst)
33 {
35 {
36 return false;
37 }
39 {
40 return false;
41 }
42 _needFirst = false;
43 }
45 {
46 return false;
47 }
48 if (_useCompPos)
49 {
51 }
53 {
54 _useCompPos = true;
55 return false;
56 }
57 return true;
58 }
59}
bool IsSamePosition(XPathNavigator other)
virtual XmlNodeOrder ComparePosition(XPathNavigator? nav)
bool MoveToFollowingSibling(XPathNavigator navigator)
bool IsFiltered(XPathNavigator navigator)
bool MoveToContent(XPathNavigator navigator)
static XPathNavigator SyncToNavigator(XPathNavigator navigatorThis, XPathNavigator navigatorThat)
void Create(XPathNavigator context, XmlNavigatorFilter filter)