https://en.cppreference.com/w/cpp/ranges/filter_view#include <ranges>
vector<int> a{1,2,3,4};
auto b = filter(a, [](int i)->bool noexcept { return i%2 == 0; });
【 在 misslost 的大作中提到: 】
: 比如,在已知的一个集合中,通过prediction来构造一个子集。
: python中的类似语句是
: def f_demp():
: ...................
--
修改:ziqin FROM 122.224.174.*
FROM 122.224.174.*