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

Lines Matching defs:PC

204     typedef PrivateConstructor PC;
205 typedef std::multimap<PC, double, std::less<>> M;
209 m.insert ( std::make_pair<PC, double> ( PC::make(5), 1 ));
210 m.insert ( std::make_pair<PC, double> ( PC::make(5), 2 ));
211 m.insert ( std::make_pair<PC, double> ( PC::make(5), 3 ));
212 m.insert ( std::make_pair<PC, double> ( PC::make(7), 1 ));
213 m.insert ( std::make_pair<PC, double> ( PC::make(7), 2 ));
214 m.insert ( std::make_pair<PC, double> ( PC::make(7), 3 ));
215 m.insert ( std::make_pair<PC, double> ( PC::make(9), 1 ));
216 m.insert ( std::make_pair<PC, double> ( PC::make(9), 2 ));
217 m.insert ( std::make_pair<PC, double> ( PC::make(9), 3 ));