1 write to _left
ReachFramework (1)
AlphaFlattener\SegmentTree.cs (1)
62_left = new SegmentTree(coord, from, half);
12 references to _left
ReachFramework (12)
AlphaFlattener\SegmentTree.cs (12)
75if ((_left != null) && (x0 <= _left._max) && (x1 >= _left._min)) // overlap with left 77_left.Remove(index, x0, x1); 100if ((_left != null) && (x0 <= _left._max) && (x1 >= _left._min)) // overlap with left 102_left.Insert(index, x0, x1); 125if ((_left != null) && (x >= _left._min) && (x <= _left._max)) 127_left.ReportIntersection(dl, index, x);