Home | History | Annotate | Download | only in unord.multimap

Lines Matching defs:eq

29     typedef std::pair<typename C::const_iterator, typename C::const_iterator> Eq;
30 Eq eq = c.equal_range(1);
31 assert(std::distance(eq.first, eq.second) == 2);
32 typename C::const_iterator i = eq.first;
38 eq = c.equal_range(2);
39 assert(std::distance(eq.first, eq.second) == 2);
40 i = eq.first;
47 eq = c.equal_range(3);
48 assert(std::distance(eq.first, eq.second) == 1);
49 i = eq.first;
52 eq = c.equal_range(4);
53 assert(std::distance(eq.first, eq.second) == 1);
54 i = eq.first;