Changeset 55d6223 in mainline
- Timestamp:
- 2018-07-05T21:41:22Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- adb7dfe1
- Parents:
- 0893dd23
- git-author:
- Dzejrou <dzejrou@…> (2018-04-30 21:20:21)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:22)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/impl/set.hpp
r0893dd23 r55d6223 27 27 */ 28 28 29 #ifndef LIBCPP_SET 30 #define LIBCPP_SET 31 29 32 #include <functional> 30 33 #include <internal/rbtree.hpp> … … 336 339 } 337 340 338 template< 339 class K 340 > 341 template<class K> 341 342 iterator find( 342 343 enable_if_t<aux::is_transparent_v<key_compare>, const K&> key … … 346 347 } 347 348 348 template< 349 class K 350 > 349 template<class K> 351 350 const_iterator find( 352 351 enable_if_t<aux::is_transparent_v<key_compare>, const K&> key … … 361 360 } 362 361 363 template< 364 class K 365 > 362 template<class K> 366 363 size_type count( 367 364 enable_if_t<aux::is_transparent_v<key_compare>, const K&> key … … 381 378 } 382 379 383 template< 384 class K 385 > 380 template<class K> 386 381 iterator lower_bound( 387 382 enable_if_t<aux::is_transparent_v<key_compare>, const K&> key … … 391 386 } 392 387 393 template< 394 class K 395 > 388 template<class K> 396 389 const_iterator lower_bound( 397 390 enable_if_t<aux::is_transparent_v<key_compare>, const K&> key … … 411 404 } 412 405 413 template< 414 class K 415 > 406 template<class K> 416 407 iterator upper_bound( 417 408 enable_if_t<aux::is_transparent_v<key_compare>, const K&> key … … 421 412 } 422 413 423 template< 424 class K 425 > 414 template<class K> 426 415 const_iterator upper_bound( 427 416 enable_if_t<aux::is_transparent_v<key_compare>, const K&> key … … 441 430 } 442 431 443 template< 444 class K 445 > 432 template<class K> 446 433 pair<iterator, iterator> equal_range( 447 434 enable_if_t<aux::is_transparent_v<key_compare>, const K&> key … … 451 438 } 452 439 453 template< 454 class K 455 > 440 template<class K> 456 441 pair<const_iterator, const_iterator> equal_range( 457 442 enable_if_t<aux::is_transparent_v<key_compare>, const K&> key … … 992 977 } 993 978 } 979 980 #endif
Note:
See TracChangeset
for help on using the changeset viewer.