reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
158 ArrayRef<int> Expected = AR1.take_front(3); 159 EXPECT_EQ(Expected, AR1.take_until([](const int &N) { return N % 2 == 0; })); 161 EXPECT_EQ(AR1, AR1.take_until([](const int &N) { return N < 0; })); 161 EXPECT_EQ(AR1, AR1.take_until([](const int &N) { return N < 0; })); 163 AR1.take_until([](const int &N) { return N > 0; }));