惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
Martin Fowler
Martin Fowler
I
InfoQ
腾讯CDC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
云风的 BLOG
云风的 BLOG
F
Fortinet All Blogs
N
Netflix TechBlog - Medium
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
D
Docker
博客园 - 三生石上(FineUI控件)
Y
Y Combinator Blog
博客园 - Franky
Engineering at Meta
Engineering at Meta
B
Blog
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
V
Visual Studio Blog

Jia Yue Hua

完美转发不完美 闲散颂 adapting c++20 ranges algorithms for most metaprogramming Reproducible github Developer Environments 使用mpmcpipeline和jthread实现软流水 在其它线程周期回调函数 在当前线程周期回调函数 cpo和tag_invoke transparent,为关联容器增加查找成员
for_each
Jia Yue Hua · 2023-05-20 · via Jia Yue Hua

C++11引入了range for loop,可是range for loop只能拿到向前range的元素,而没法取得循环的当前下标。

folly提供了for_each算法,相比标准库的for_each,folly的for_each回调的函数对象或函数可接受两个参数,这时第一个指当前元素,第二个值循环的下标。同时folly的for_each还可对异构的tuple操作。此外folly for_each还可支持提前结束操作,类似for循环的break。

例子:

#include <gtest/gtest.h>
#include <folly/container/Foreach.h>
#include <type_traits>
#include <tuple>
#include <vector>
#include <fmt/format.h>
TEST(for_each, foreach)
{
  auto v = std::vector {1,2,3};
  auto t = std::make_tuple (1,2,3);
  auto tb = std::make_tuple (1,2,3.2);
  auto func = [](auto elem,auto index){
    fmt::print("elem:{}, index: {}\n", elem,index);
    if (elem == 2)
    {
      return folly::loop_break;
    }
    return folly::loop_continue;
  };
  auto funcb = [](auto elem){
    fmt::print("elem:{}\n", elem);
    if (elem == 2)
    {
      return folly::loop_break;
    }
    return folly::loop_continue;
  };
  folly::for_each (v,func);
    fmt::print("++++++\n");
  folly::for_each (t,func);
    fmt::print("++++++\n");
  folly::for_each (tb,func);
    fmt::print("++++++\n");
  folly::for_each (tb,funcb);
    fmt::print("++++++\n");

}

Posted 2023-05-20