Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
miniconda3 /
python /
include /
mamba /
util /
[ HOME SHELL ]
Name
Size
Permission
Action
build.hpp
838
B
-rw-rw-r--
cast.hpp
3.46
KB
-rw-rw-r--
compare.hpp
2.06
KB
-rw-rw-r--
deprecation.hpp
612
B
-rw-rw-r--
flat_binary_tree.hpp
7.56
KB
-rw-rw-r--
flat_bool_expr_tree.hpp
16.24
KB
-rw-rw-r--
flat_set.hpp
10.72
KB
-rw-rw-r--
functional.hpp
770
B
-rw-rw-r--
graph.hpp
23.48
KB
-rw-rw-r--
iterator.hpp
13.6
KB
-rw-rw-r--
path_manip.hpp
1.21
KB
-rw-rw-r--
string.hpp
23.76
KB
-rw-rw-r--
type_traits.hpp
1.45
KB
-rw-rw-r--
url.hpp
5.87
KB
-rw-rw-r--
url_manip.hpp
4.41
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : compare.hpp
// Copyright (c) 2022, Cppreference.com // // Distributed under the terms of the Copyright/CC-BY-SA License. // // The full license can be found at the address // https://en.cppreference.com/w/Cppreference:Copyright/CC-BY-SA /** * Backport of C++20 ``std::cmp_*`` functions for signed comparison. */ #ifndef MAMBA_CORE_UTIL_COMPARE_HPP #define MAMBA_CORE_UTIL_COMPARE_HPP #include <type_traits> #include "mamba/util/deprecation.hpp" namespace mamba::util { template <class T, class U> MAMBA_DEPRECATED_CXX20 constexpr bool cmp_equal(T t, U u) noexcept { using UT = std::make_unsigned_t<T>; using UU = std::make_unsigned_t<U>; if constexpr (std::is_signed_v<T> == std::is_signed_v<U>) { return t == u; } else if constexpr (std::is_signed_v<T>) { return t < 0 ? false : UT(t) == u; } else { return u < 0 ? false : t == UU(u); } } template <class T, class U> MAMBA_DEPRECATED_CXX20 constexpr bool cmp_not_equal(T t, U u) noexcept { return !cmp_equal(t, u); } template <class T, class U> MAMBA_DEPRECATED_CXX20 constexpr bool cmp_less(T t, U u) noexcept { using UT = std::make_unsigned_t<T>; using UU = std::make_unsigned_t<U>; if constexpr (std::is_signed_v<T> == std::is_signed_v<U>) { return t < u; } else if constexpr (std::is_signed_v<T>) { return t < 0 ? true : UT(t) < u; } else { return u < 0 ? false : t < UU(u); } } template <class T, class U> MAMBA_DEPRECATED_CXX20 constexpr bool cmp_greater(T t, U u) noexcept { return cmp_less(u, t); } template <class T, class U> MAMBA_DEPRECATED_CXX20 constexpr bool cmp_less_equal(T t, U u) noexcept { return !cmp_greater(t, u); } template <class T, class U> MAMBA_DEPRECATED_CXX20 constexpr bool cmp_greater_equal(T t, U u) noexcept { return !cmp_less(t, u); } } #endif
Close