Home
last modified time | relevance | path

Searched refs:first_l (Results 1 – 2 of 2) sorted by relevance

/external/pigweed/pw_minimal_cpp_stdlib/public/internal/
Dalgorithm.h65 constexpr bool equal(LhsIterator first_l, in equal() argument
69 while (first_l != last_l && first_r != last_r) { in equal()
70 if (*first_l != *first_r) { in equal()
73 ++first_l; in equal()
76 return first_l == last_l && first_r == last_r; in equal()
80 constexpr bool lexicographical_compare(LhsIterator first_l, in lexicographical_compare() argument
84 while (first_l != last_l && first_r != last_r) { in lexicographical_compare()
85 if (*first_l < *first_r) { in lexicographical_compare()
88 if (*first_r < *first_l) { in lexicographical_compare()
92 ++first_l; in lexicographical_compare()
[all …]
/external/pigweed/pw_minimal_cpp_stdlib/public/
Dalgorithm65 constexpr bool equal(LhsIterator first_l,
69 while (first_l != last_l && first_r != last_r) {
70 if (*first_l != *first_r) {
73 ++first_l;
76 return first_l == last_l && first_r == last_r;
80 constexpr bool lexicographical_compare(LhsIterator first_l,
84 while (first_l != last_l && first_r != last_r) {
85 if (*first_l < *first_r) {
88 if (*first_r < *first_l) {
92 ++first_l;
[all …]