1 write to _left
ReachFramework (1)
AlphaFlattener\SegmentTree.cs (1)
63_left = new SegmentTree(coord, from, half);
12 references to _left
ReachFramework (12)
AlphaFlattener\SegmentTree.cs (12)
79if ((_left != null) && (x0 <= _left._max) && (x1 >= _left._min)) // overlap with left 81_left.Remove(index, x0, x1); 104if ((_left != null) && (x0 <= _left._max) && (x1 >= _left._min)) // overlap with left 106_left.Insert(index, x0, x1); 129if ((_left != null) && (x >= _left._min) && (x <= _left._max)) 131_left.ReportIntersection(dl, index, x);