/* ------------------------------------------- Copyright (C) 2024-2025 Amlal El Mahrouss, Licensed under Apache 2.0. ------------------------------------------- */ #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