std::invoke Post author:张拓 Post published:2024年 7月 24日 Post category:杂 Post comments:0评论 std::invoke的灵活性使其成为在泛型编程中调用可调用对象的理想选择,尤其是在需要处理不同类型可调用对象的情况下。… 继续阅读std::invoke
std::ranges::next_permutation Post author:张拓 Post published:2024年 7月 24日 Post category:杂 Post comments:0评论 std::ranges::next_permutation是C++20中引入的一个算法,用于生成给定范围内的下一个字典序… 继续阅读std::ranges::next_permutation
std::variant Post author:张拓 Post published:2024年 7月 24日 Post category:c++/c++17 Post comments:0评论 类模板 std::variant 表示一个类型安全的联合体(以下称“变体”)。一个 std::variant 的实例在任… 继续阅读std::variant
std::optional Post author:张拓 Post published:2024年 7月 24日 Post category:杂 Post comments:0评论 std::optional是C++17中引入的一个非常有用的类型,用于表示可能包含值或不包含值(即“可选”值)的容器。它… 继续阅读std::optional