| Server IP : 217.160.0.244 / Your IP : 216.73.217.138 Web Server : Apache System : Linux infong-eu155 4.4.400-icpu-108 #2 SMP Wed Feb 11 11:51:01 UTC 2026 x86_64 User : u100174116 ( 6746176) PHP Version : 8.5.10 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/share/zsh/functions/Math/ |
Upload File : |
#autoload
zsh_math_func_min() {
emulate -L zsh
local result=$1
shift
local arg
for arg ; do
(( arg < result ))
case $? in
(0) (( result = arg ));;
(1) ;;
(*) return $?;;
esac
done
(( result ))
true # Careful here: `return 0` evaluates an arithmetic expression
}
functions -M min 1 -1 zsh_math_func_min # at least one argument
zsh_math_func_max() {
emulate -L zsh
local result=$1
shift
local arg
for arg ; do
(( arg > result ))
case $? in
(0) (( result = arg ));;
(1) ;;
(*) return $?;;
esac
done
(( result ))
true # Careful here: `return 0` evaluates an arithmetic expression
}
functions -M max 1 -1 zsh_math_func_max # at least one argument
zsh_math_func_sum() {
emulate -L zsh
local sum
local arg
for arg ; do
(( sum += arg ))
done
(( sum ))
true # Careful here: `return 0` evaluates an arithmetic expression
}
functions -M sum 0 -1 zsh_math_func_sum