1 write to _left
ReachFramework (1)
AlphaFlattener\SegmentTree.cs (1)
66_left = new SegmentTree(coord, from, half);
12 references to _left
ReachFramework (12)
AlphaFlattener\SegmentTree.cs (12)
82if ((_left != null) && (x0 <= _left._max) && (x1 >= _left._min)) // overlap with left 84_left.Remove(index, x0, x1); 107if ((_left != null) && (x0 <= _left._max) && (x1 >= _left._min)) // overlap with left 109_left.Insert(index, x0, x1); 132if ((_left != null) && (x >= _left._min) && (x <= _left._max)) 134_left.ReportIntersection(dl, index, x);