Filter Comparisons
TotalView lets you filter array information in a variety of ways--and these ways can overlap. For example, the following two filters produce the same result:
> 100
$value > 100
Similarly, you obtain the same results with either of the following:
>0:<100
$value > 0 && $value < 100
In both of these, the first method is easier to type than the second. In general, you would use the second method when you are creating more complicated expressions.