Using Filter Comparisons
TotalView provides several different ways to filter array information. For example, the following two filters display the same array items:
> 100
$value > 100
The following filters display the same array items:
>0:<100
$value > 0 && $value < 100
The only difference is that the first method is easier to type than the second, so you’re more likely to use the second method when you’re creating more complicated expressions.