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

Lines Matching defs:PC

180     typedef PrivateConstructor PC;
181 typedef std::multimap<PC, double, std::less<>> M;
185 m.insert ( std::make_pair<PC, double> ( PC::make(5), 1 ));
186 m.insert ( std::make_pair<PC, double> ( PC::make(5), 2 ));
187 m.insert ( std::make_pair<PC, double> ( PC::make(5), 3 ));
188 m.insert ( std::make_pair<PC, double> ( PC::make(7), 1 ));
189 m.insert ( std::make_pair<PC, double> ( PC::make(7), 2 ));
190 m.insert ( std::make_pair<PC, double> ( PC::make(7), 3 ));
191 m.insert ( std::make_pair<PC, double> ( PC::make(9), 1 ));
192 m.insert ( std::make_pair<PC, double> ( PC::make(9), 2 ));
193 m.insert ( std::make_pair<PC, double> ( PC::make(9), 3 ));