1 write to _right
ReachFramework (1)
AlphaFlattener\SegmentTree.cs (1)
64
_right
= new SegmentTree(coord, from + half - 1, count - half + 1);
12 references to _right
ReachFramework (12)
AlphaFlattener\SegmentTree.cs (12)
84
if ((
_right
!= null) && (x0 <=
_right
._max) && (x1 >=
_right
._min)) // overlap with right
86
_right
.Remove(index, x0, x1);
109
if ((
_right
!= null) && (x0 <=
_right
._max) && (x1 >=
_right
._min)) // overlap with right
111
_right
.Insert(index, x0, x1);
134
if ((
_right
!= null) && (x >=
_right
._min) && (x <=
_right
._max))
136
_right
.ReportIntersection(dl, index, x);