// SPDX-License-Identifier: Apache-2.0 // Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) // Official repository: https://github.com/ne-foss-org/nectar #ifndef LIBCXX_UTILITY_H #define LIBCXX_UTILITY_H namespace std { /// @brief Forward object. /// @tparam Args the object type. /// @param arg the object. /// @return object's rvalue template inline auto forward(Args& arg) -> Args&& { return static_cast(arg); } /// @brief Move object. /// @tparam Args the object type. /// @param arg the object. /// @return object's rvalue template inline auto move(Args&& arg) -> Args&& { return static_cast(arg); } } // namespace std #endif // LIBCXX_UTILITY_H