Home
last modified time | relevance | path

Searched refs:NumericOperator (Results 1 – 2 of 2) sorted by relevance

/plugin/structcondstyle/
H A Daction.php15 use dokuwiki\plugin\structcondstyle\meta\NumericOperator; alias
46 … "<" => new NumericOperator("<", function($lhs, $rhs){return $lhs < $rhs;}),
47 … "<=" => new NumericOperator("<=", function($lhs, $rhs){return $lhs <= $rhs;}),
48 … ">" => new NumericOperator(">", function($lhs, $rhs){return $lhs > $rhs;}),
49 … ">=" => new NumericOperator(">=", function($lhs, $rhs){return $lhs >= $rhs;}),
/plugin/structcondstyle/meta/
H A DOperator.php34 class NumericOperator extends Operator class