File indexing completed on 2024-11-16 09:54:08
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #ifndef RANGES_V3_UTILITY_FUNCTIONAL_HPP
0014 #define RANGES_V3_UTILITY_FUNCTIONAL_HPP
0015
0016 #include <range/v3/detail/config.hpp>
0017 RANGES_DEPRECATED_HEADER(
0018 "This header has been deprecated. Please find what you are looking for in the "
0019 "range/v3/functional/ directory.")
0020
0021 #include <range/v3/detail/with_braced_init_args.hpp>
0022 #include <range/v3/functional/arithmetic.hpp>
0023 #include <range/v3/functional/bind.hpp>
0024 #include <range/v3/functional/bind_back.hpp>
0025 #include <range/v3/functional/comparisons.hpp>
0026 #include <range/v3/functional/compose.hpp>
0027 #include <range/v3/functional/concepts.hpp>
0028 #include <range/v3/functional/identity.hpp>
0029 #include <range/v3/functional/indirect.hpp>
0030 #include <range/v3/functional/invoke.hpp>
0031 #include <range/v3/functional/not_fn.hpp>
0032 #include <range/v3/functional/on.hpp>
0033 #include <range/v3/functional/overload.hpp>
0034 #include <range/v3/functional/pipeable.hpp>
0035 #include <range/v3/functional/reference_wrapper.hpp>
0036
0037 namespace ranges
0038 {
0039 using detail::with_braced_init_args;
0040 }
0041
0042 #endif