mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-29 05:03:46 +08:00
Add max and min math functions
This commit is contained in:
parent
a5ea8570ae
commit
c762c62464
|
@ -26,6 +26,7 @@ Interactive improvements
|
||||||
- Fish now automatically creates ``config.fish`` and the configuration directories in ``$XDG_CONFIG_HOME/fish`` (by default ``~/.config/fish``) if they do not already exist.
|
- Fish now automatically creates ``config.fish`` and the configuration directories in ``$XDG_CONFIG_HOME/fish`` (by default ``~/.config/fish``) if they do not already exist.
|
||||||
- ``__fish_prepend_sudo`` now toggles sudo even when it took the commandline from history instead of only adding it.
|
- ``__fish_prepend_sudo`` now toggles sudo even when it took the commandline from history instead of only adding it.
|
||||||
- Fish now defaults job-control to "full" meaning it more sensibly handles assigning the terminal and process groups (:issue:`5036`, :issue:`5832`, :issue:`7721`)
|
- Fish now defaults job-control to "full" meaning it more sensibly handles assigning the terminal and process groups (:issue:`5036`, :issue:`5832`, :issue:`7721`)
|
||||||
|
- ``math`` learned two new functions, ``max`` and ``min`.
|
||||||
|
|
||||||
New or improved bindings
|
New or improved bindings
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
@ -88,6 +88,8 @@ Functions
|
||||||
- ``ln`` - the base-e logarithm
|
- ``ln`` - the base-e logarithm
|
||||||
- ``log`` or ``log10`` - the base-10 logarithm
|
- ``log`` or ``log10`` - the base-10 logarithm
|
||||||
- ``log2`` - the base-2 logarithm
|
- ``log2`` - the base-2 logarithm
|
||||||
|
- ``max`` - returns the larger of two numbers
|
||||||
|
- ``min`` - returns the smaller of two numbers
|
||||||
- ``ncr`` - "from n choose r" combination function - how many subsets of size r can be taken from n (order doesn't matter)
|
- ``ncr`` - "from n choose r" combination function - how many subsets of size r can be taken from n (order doesn't matter)
|
||||||
- ``npr`` - the number of subsets of size r that can be taken from a set of n elements (including different order)
|
- ``npr`` - the number of subsets of size r that can be taken from a set of n elements (including different order)
|
||||||
- ``pow(x,y)`` returns x to the y (and can be written as ``x ^ y``)
|
- ``pow(x,y)`` returns x to the y (and can be written as ``x ^ y``)
|
||||||
|
|
|
@ -182,6 +182,20 @@ static constexpr double bit_xor(double a, double b) {
|
||||||
return static_cast<double>(static_cast<long long>(a) ^ static_cast<long long>(b));
|
return static_cast<double>(static_cast<long long>(a) ^ static_cast<long long>(b));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static double max(double a, double b) {
|
||||||
|
if (isnan(a)) return a;
|
||||||
|
if (isnan(b)) return b;
|
||||||
|
if (a == b) return signbit(a) ? b : a; // treat +0 as larger than -0
|
||||||
|
return a > b ? a : b;
|
||||||
|
}
|
||||||
|
|
||||||
|
static double min(double a, double b) {
|
||||||
|
if (isnan(a)) return a;
|
||||||
|
if (isnan(b)) return b;
|
||||||
|
if (a == b) return signbit(a) ? a : b; // treat -0 as smaller than +0
|
||||||
|
return a < b ? a : b;
|
||||||
|
}
|
||||||
|
|
||||||
static const te_builtin functions[] = {
|
static const te_builtin functions[] = {
|
||||||
/* must be in alphabetical order */
|
/* must be in alphabetical order */
|
||||||
{L"abs", reinterpret_cast<void *>(static_cast<te_fun1>(fabs)), TE_FUNCTION1},
|
{L"abs", reinterpret_cast<void *>(static_cast<te_fun1>(fabs)), TE_FUNCTION1},
|
||||||
|
@ -203,6 +217,8 @@ static const te_builtin functions[] = {
|
||||||
{L"log", reinterpret_cast<void *>(static_cast<te_fun1>(log10)), TE_FUNCTION1},
|
{L"log", reinterpret_cast<void *>(static_cast<te_fun1>(log10)), TE_FUNCTION1},
|
||||||
{L"log10", reinterpret_cast<void *>(static_cast<te_fun1>(log10)), TE_FUNCTION1},
|
{L"log10", reinterpret_cast<void *>(static_cast<te_fun1>(log10)), TE_FUNCTION1},
|
||||||
{L"log2", reinterpret_cast<void *>(static_cast<te_fun1>(log2)), TE_FUNCTION1},
|
{L"log2", reinterpret_cast<void *>(static_cast<te_fun1>(log2)), TE_FUNCTION1},
|
||||||
|
{L"max", reinterpret_cast<void *>(static_cast<te_fun2>(max)), TE_FUNCTION2},
|
||||||
|
{L"min", reinterpret_cast<void *>(static_cast<te_fun2>(min)), TE_FUNCTION2},
|
||||||
{L"ncr", reinterpret_cast<void *>(static_cast<te_fun2>(ncr)), TE_FUNCTION2},
|
{L"ncr", reinterpret_cast<void *>(static_cast<te_fun2>(ncr)), TE_FUNCTION2},
|
||||||
{L"npr", reinterpret_cast<void *>(static_cast<te_fun2>(npr)), TE_FUNCTION2},
|
{L"npr", reinterpret_cast<void *>(static_cast<te_fun2>(npr)), TE_FUNCTION2},
|
||||||
{L"pi", reinterpret_cast<void *>(static_cast<te_fun0>(pi)), TE_FUNCTION0},
|
{L"pi", reinterpret_cast<void *>(static_cast<te_fun0>(pi)), TE_FUNCTION0},
|
||||||
|
|
|
@ -33,6 +33,12 @@ math -- -4 / 2
|
||||||
math -- '-4 * 2'
|
math -- '-4 * 2'
|
||||||
# CHECK: -8
|
# CHECK: -8
|
||||||
|
|
||||||
|
# Validate max and min
|
||||||
|
math 'max(1,2)'
|
||||||
|
math 'min(1,2)'
|
||||||
|
# CHECK: 2
|
||||||
|
# CHECK: 1
|
||||||
|
|
||||||
# Validate some rounding functions
|
# Validate some rounding functions
|
||||||
math 'round(3/2)'
|
math 'round(3/2)'
|
||||||
math 'floor(3/2)'
|
math 'floor(3/2)'
|
||||||
|
@ -100,10 +106,10 @@ not math 'ncr(1)'
|
||||||
# CHECKERR: 'ncr(1)'
|
# CHECKERR: 'ncr(1)'
|
||||||
# CHECKERR: ^
|
# CHECKERR: ^
|
||||||
|
|
||||||
# There is no "max" function.
|
# There is no "blah" function.
|
||||||
not math 'max()'
|
not math 'blah()'
|
||||||
# CHECKERR: math: Error: Unknown function
|
# CHECKERR: math: Error: Unknown function
|
||||||
# CHECKERR: 'max()'
|
# CHECKERR: 'blah()'
|
||||||
# CHECKERR: ^
|
# CHECKERR: ^
|
||||||
|
|
||||||
math n + 4
|
math n + 4
|
||||||
|
|
Loading…
Reference in New Issue
Block a user