├── Fixed-size span construction from dynamic range.html ├── LICENSE_1_0.txt ├── README.md ├── We need language support for tuple unpacking.html ├── accepted ├── A proposal to add a generalized callable negator.html ├── A proposal to add invoke function template.html ├── Comments on P0119 Overload sets as function arguments.html ├── Fixes for not_fn.html ├── Fixing Relations.html ├── Output days with d suffix.html ├── Range compare algorithms are overconstrained.html ├── Remove dedicated precalculated hash lookup interface.html ├── Rename condition_variable_any interruptible wait methods.html ├── Simplified partial function application.html ├── Spaceship library update.html ├── Symmetry for spaceship.html ├── bind_front should not unwrap reference_wrapper.html └── reference_wrapper for incomplete types.html ├── implementation ├── bind │ ├── additional_placeholders.hpp │ ├── bind.hpp │ ├── integer_sequence.hpp │ ├── placeholder_traits.hpp │ ├── placeholders.hpp │ └── test.cpp ├── invoke │ ├── invoke_cpp11.hpp │ ├── invoke_option1.hpp │ ├── invoke_option2.hpp │ ├── test_classes.hpp │ ├── test_invoke.cpp │ ├── test_type_traits.cpp │ ├── to_reference.hpp │ └── type_traits.hpp └── space.cpp ├── onhold ├── Extend INVOKE to support types convertible to target class.html └── INVOKE and reference_wrapper interoperability.html ├── presentation ├── alias.tex ├── lift.tex └── return.tex └── rejected ├── Change is_transparent to metafunction.html ├── Keep alias syntax extendable.html ├── Parameter group placeholders for bind.html └── Return type deduction and SFINAE.html /Fixed-size span construction from dynamic range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/Fixed-size span construction from dynamic range.html -------------------------------------------------------------------------------- /LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/LICENSE_1_0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /We need language support for tuple unpacking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/We need language support for tuple unpacking.html -------------------------------------------------------------------------------- /accepted/A proposal to add a generalized callable negator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/accepted/A proposal to add a generalized callable negator.html -------------------------------------------------------------------------------- /accepted/A proposal to add invoke function template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/accepted/A proposal to add invoke function template.html -------------------------------------------------------------------------------- /accepted/Comments on P0119 Overload sets as function arguments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/accepted/Comments on P0119 Overload sets as function arguments.html -------------------------------------------------------------------------------- /accepted/Fixes for not_fn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/accepted/Fixes for not_fn.html -------------------------------------------------------------------------------- /accepted/Fixing Relations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/accepted/Fixing Relations.html -------------------------------------------------------------------------------- /accepted/Output days with d suffix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/accepted/Output days with d suffix.html -------------------------------------------------------------------------------- /accepted/Range compare algorithms are overconstrained.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/accepted/Range compare algorithms are overconstrained.html -------------------------------------------------------------------------------- /accepted/Remove dedicated precalculated hash lookup interface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/accepted/Remove dedicated precalculated hash lookup interface.html -------------------------------------------------------------------------------- /accepted/Rename condition_variable_any interruptible wait methods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/accepted/Rename condition_variable_any interruptible wait methods.html -------------------------------------------------------------------------------- /accepted/Simplified partial function application.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/accepted/Simplified partial function application.html -------------------------------------------------------------------------------- /accepted/Spaceship library update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/accepted/Spaceship library update.html -------------------------------------------------------------------------------- /accepted/Symmetry for spaceship.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/accepted/Symmetry for spaceship.html -------------------------------------------------------------------------------- /accepted/bind_front should not unwrap reference_wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/accepted/bind_front should not unwrap reference_wrapper.html -------------------------------------------------------------------------------- /accepted/reference_wrapper for incomplete types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/accepted/reference_wrapper for incomplete types.html -------------------------------------------------------------------------------- /implementation/bind/additional_placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/implementation/bind/additional_placeholders.hpp -------------------------------------------------------------------------------- /implementation/bind/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/implementation/bind/bind.hpp -------------------------------------------------------------------------------- /implementation/bind/integer_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/implementation/bind/integer_sequence.hpp -------------------------------------------------------------------------------- /implementation/bind/placeholder_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/implementation/bind/placeholder_traits.hpp -------------------------------------------------------------------------------- /implementation/bind/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/implementation/bind/placeholders.hpp -------------------------------------------------------------------------------- /implementation/bind/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/implementation/bind/test.cpp -------------------------------------------------------------------------------- /implementation/invoke/invoke_cpp11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/implementation/invoke/invoke_cpp11.hpp -------------------------------------------------------------------------------- /implementation/invoke/invoke_option1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/implementation/invoke/invoke_option1.hpp -------------------------------------------------------------------------------- /implementation/invoke/invoke_option2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/implementation/invoke/invoke_option2.hpp -------------------------------------------------------------------------------- /implementation/invoke/test_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/implementation/invoke/test_classes.hpp -------------------------------------------------------------------------------- /implementation/invoke/test_invoke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/implementation/invoke/test_invoke.cpp -------------------------------------------------------------------------------- /implementation/invoke/test_type_traits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/implementation/invoke/test_type_traits.cpp -------------------------------------------------------------------------------- /implementation/invoke/to_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/implementation/invoke/to_reference.hpp -------------------------------------------------------------------------------- /implementation/invoke/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/implementation/invoke/type_traits.hpp -------------------------------------------------------------------------------- /implementation/space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/implementation/space.cpp -------------------------------------------------------------------------------- /onhold/Extend INVOKE to support types convertible to target class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/onhold/Extend INVOKE to support types convertible to target class.html -------------------------------------------------------------------------------- /onhold/INVOKE and reference_wrapper interoperability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/onhold/INVOKE and reference_wrapper interoperability.html -------------------------------------------------------------------------------- /presentation/alias.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/presentation/alias.tex -------------------------------------------------------------------------------- /presentation/lift.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/presentation/lift.tex -------------------------------------------------------------------------------- /presentation/return.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/presentation/return.tex -------------------------------------------------------------------------------- /rejected/Change is_transparent to metafunction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/rejected/Change is_transparent to metafunction.html -------------------------------------------------------------------------------- /rejected/Keep alias syntax extendable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/rejected/Keep alias syntax extendable.html -------------------------------------------------------------------------------- /rejected/Parameter group placeholders for bind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/rejected/Parameter group placeholders for bind.html -------------------------------------------------------------------------------- /rejected/Return type deduction and SFINAE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomaszkam/proposals/HEAD/rejected/Return type deduction and SFINAE.html --------------------------------------------------------------------------------