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

Lines Matching defs:PC

194     typedef PrivateConstructor PC;
195 typedef std::multimap<PC, double, std::less<>> M;
199 m.insert ( std::make_pair<PC, double> ( PC::make(5), 1 ));
200 m.insert ( std::make_pair<PC, double> ( PC::make(5), 2 ));
201 m.insert ( std::make_pair<PC, double> ( PC::make(5), 3 ));
202 m.insert ( std::make_pair<PC, double> ( PC::make(7), 1 ));
203 m.insert ( std::make_pair<PC, double> ( PC::make(7), 2 ));
204 m.insert ( std::make_pair<PC, double> ( PC::make(7), 3 ));
205 m.insert ( std::make_pair<PC, double> ( PC::make(9), 1 ));
206 m.insert ( std::make_pair<PC, double> ( PC::make(9), 2 ));
207 m.insert ( std::make_pair<PC, double> ( PC::make(9), 3 ));