Lines Matching defs:Lt
4598 inline internal::Lt2Matcher Lt() { return internal::Lt2Matcher(); }
4844 // - {1, 2} doesn't match IsSupersetOf({Eq(1), Lt(2)}), even though 1 matches
4845 // both Eq(1) and Lt(2). The reason is that different matchers must be used
4847 // - {1, 1, 2} matches IsSupersetOf({Eq(1), Lt(2)}), as (the first) 1 matches
4848 // Eq(1) and (the second) 1 matches Lt(2).
4902 // - {1} matches IsSubsetOf({Gt(0), Lt(0)}), as 1 matches Gt(0).
4903 // - {1, -1} matches IsSubsetOf({Lt(0), Gt(0)}), as 1 matches Gt(0) and -1
4904 // matches Lt(0).
4905 // - {1, 2} doesn't matches IsSubsetOf({Gt(0), Lt(0)}), even though 1 and 2 both
4963 // EXPECT_THAT(page_ids, Not(Each(Lt(2))));