1 write to _right
ReachFramework (1)
AlphaFlattener\SegmentTree.cs (1)
67
_right
= new SegmentTree(coord, from + half - 1, count - half + 1);
12 references to _right
ReachFramework (12)
AlphaFlattener\SegmentTree.cs (12)
87
if ((
_right
!= null) && (x0 <=
_right
._max) && (x1 >=
_right
._min)) // overlap with right
89
_right
.Remove(index, x0, x1);
112
if ((
_right
!= null) && (x0 <=
_right
._max) && (x1 >=
_right
._min)) // overlap with right
114
_right
.Insert(index, x0, x1);
137
if ((
_right
!= null) && (x >=
_right
._min) && (x <=
_right
._max))
139
_right
.ReportIntersection(dl, index, x);