Skip to content

Commit

Permalink
param.hpp: rename reverse_coalesce_* -> coalesce_*_reverse
Browse files Browse the repository at this point in the history
  • Loading branch information
XPhyro committed Aug 22, 2024
1 parent 1f171ef commit c54180a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/cpp/include/param.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace xph {
}

template <typename Treturn, typename... Ts>
inline constexpr Treturn reverse_coalesce(const Ts&... args)
inline constexpr Treturn coalesce_reverse(const Ts&... args)
{
Treturn ret{};

Expand Down Expand Up @@ -51,7 +51,7 @@ namespace xph {
}

template <typename Treturn, typename... Ts>
inline constexpr Treturn reverse_coalesce_pre(const Ts&... args)
inline constexpr Treturn coalesce_pre_reverse(const Ts&... args)
{
Treturn ret{};

Expand Down Expand Up @@ -83,7 +83,7 @@ namespace xph {
}

template <typename Treturn, typename... Ts>
inline constexpr Treturn reverse_coalesce_post(const Ts&... args)
inline constexpr Treturn coalesce_post_reverse(const Ts&... args)
{
Treturn ret{};

Expand Down Expand Up @@ -114,7 +114,7 @@ namespace xph {
}

template <typename Treturn, typename... Ts>
inline constexpr Treturn reverse_coalesce_deref(const Ts&... args)
inline constexpr Treturn coalesce_deref_reverse(const Ts&... args)
{
Treturn ret{};

Expand Down Expand Up @@ -145,7 +145,7 @@ namespace xph {
}

template <typename Treturn, typename... Ts>
inline constexpr Treturn reverse_coalesce_map(const auto& callable, const Ts&... args)
inline constexpr Treturn coalesce_map_reverse(const auto& callable, const Ts&... args)
{
Treturn ret{};

Expand Down Expand Up @@ -176,7 +176,7 @@ namespace xph {
}

template <typename Treturn, typename... Ts>
inline constexpr Treturn reverse_coalesce_deref_map(const auto& callable, const Ts&... args)
inline constexpr Treturn coalesce_deref_map_reverse(const auto& callable, const Ts&... args)
{
Treturn ret{};

Expand Down

0 comments on commit c54180a

Please sign in to comment.