From 21d0c9b13d51c31830ad4417f8380c96c9b3d424 Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Tue, 16 Oct 2007 14:30:04 +0000 Subject: [PATCH] doc fixes --- lib/WebGUI/Utility.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/WebGUI/Utility.pm b/lib/WebGUI/Utility.pm index c596ce15b..f243334a3 100644 --- a/lib/WebGUI/Utility.pm +++ b/lib/WebGUI/Utility.pm @@ -40,6 +40,7 @@ This package provides miscellaneous but useful utilities to the WebGUI programme use WebGUI::Utility; $string = commify($integer); $size = formatBytes($integer); + $boolean = isBetween($value, $first, $second); $boolean = isIn($value, @array); $boolean = isInSubnet($ip, \@subnets); makeArrayCommaSafe(\@array); @@ -48,6 +49,7 @@ This package provides miscellaneous but useful utilities to the WebGUI programme $string = makeTabSafe($string); $integer = randint($low,$high); $hashRef = randomizeHash(\%hash); + $rounded = round($number, $digits); %hash = sortHash(%hash); %hash = sortHashDescending(%hash);