1 write to _max
ReachFramework (1)
AlphaFlattener\SegmentTree.cs (1)
57
_max
= coord[from + count - 1].value;
8 references to _max
ReachFramework (8)
AlphaFlattener\SegmentTree.cs (8)
70
if ((_min >= x0) && (
_max
<= x1)) // [_min.._max] is within [x0..x1]
79
if ((_left != null) && (x0 <= _left.
_max
) && (x1 >= _left._min)) // overlap with left
84
if ((_right != null) && (x0 <= _right.
_max
) && (x1 >= _right._min)) // overlap with right
93
if ((_min >= x0) && (
_max
<= x1)) // [_min.._max] is within [x0..x1]
104
if ((_left != null) && (x0 <= _left.
_max
) && (x1 >= _left._min)) // overlap with left
109
if ((_right != null) && (x0 <= _right.
_max
) && (x1 >= _right._min)) // overlap with right
129
if ((_left != null) && (x >= _left._min) && (x <= _left.
_max
))
134
if ((_right != null) && (x >= _right._min) && (x <= _right.
_max
))