mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-02 14:04:20 +00:00
add ptr_fun, mem_fun, mem_fun_ref
This commit is contained in:
parent
4a8e938887
commit
f86d17d0d4
46 changed files with 322 additions and 76 deletions
|
@ -338,10 +338,10 @@ namespace sprout {
|
|||
SPROUT_CONSTEXPR compressed_pair(first_param_type x, second_param_type y)
|
||||
: base_type(x, y)
|
||||
{}
|
||||
SPROUT_CONSTEXPR explicit compressed_pair(first_param_type x)
|
||||
explicit SPROUT_CONSTEXPR compressed_pair(first_param_type x)
|
||||
: base_type(x)
|
||||
{}
|
||||
SPROUT_CONSTEXPR explicit compressed_pair(second_param_type y)
|
||||
explicit SPROUT_CONSTEXPR compressed_pair(second_param_type y)
|
||||
: base_type(y)
|
||||
{}
|
||||
first_reference first() {
|
||||
|
@ -402,7 +402,7 @@ namespace sprout {
|
|||
SPROUT_CONSTEXPR compressed_pair(first_param_type x, second_param_type y)
|
||||
: base_type(x, y)
|
||||
{}
|
||||
SPROUT_CONSTEXPR explicit compressed_pair(first_param_type x)
|
||||
explicit SPROUT_CONSTEXPR compressed_pair(first_param_type x)
|
||||
: base_type(x)
|
||||
{}
|
||||
first_reference first() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue