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)
87if ((_right != null) && (x0 <= _right._max) && (x1 >= _right._min)) // overlap with right 89_right.Remove(index, x0, x1); 112if ((_right != null) && (x0 <= _right._max) && (x1 >= _right._min)) // overlap with right 114_right.Insert(index, x0, x1); 137if ((_right != null) && (x >= _right._min) && (x <= _right._max)) 139_right.ReportIntersection(dl, index, x);