├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── CMakeLists.txt ├── README.md ├── appveyor.yml ├── config ├── Jamfile.v2 └── graph_supported.cpp ├── doc ├── Jamfile.v2 ├── html │ ├── index.html │ ├── reference.html │ ├── rst.css │ └── vellipsis.gif ├── index.rst └── reference.rst ├── include └── boost │ ├── parameter.hpp │ └── parameter │ ├── are_tagged_arguments.hpp │ ├── aux_ │ ├── always_true_predicate.hpp │ ├── arg_list.hpp │ ├── as_lvalue.hpp │ ├── augment_predicate.hpp │ ├── cast.hpp │ ├── default.hpp │ ├── has_nested_template_fn.hpp │ ├── is_maybe.hpp │ ├── is_placeholder.hpp │ ├── is_tagged_argument.hpp │ ├── lambda_tag.hpp │ ├── maybe.hpp │ ├── name.hpp │ ├── pack │ │ ├── as_parameter_requirements.hpp │ │ ├── deduce_tag.hpp │ │ ├── deduced_item.hpp │ │ ├── insert_tagged.hpp │ │ ├── is_named_argument.hpp │ │ ├── item.hpp │ │ ├── make_arg_list.hpp │ │ ├── make_deduced_items.hpp │ │ ├── make_items.hpp │ │ ├── make_parameter_spec_items.hpp │ │ ├── parameter_requirements.hpp │ │ ├── predicate.hpp │ │ ├── satisfies.hpp │ │ ├── tag_deduced.hpp │ │ ├── tag_keyword_arg.hpp │ │ ├── tag_keyword_arg_ref.hpp │ │ ├── tag_template_keyword_arg.hpp │ │ ├── tag_type.hpp │ │ └── unmatched_argument.hpp │ ├── parameter_requirements.hpp │ ├── parenthesized_type.hpp │ ├── pp_impl │ │ ├── argument_pack.hpp │ │ ├── match.hpp │ │ └── unwrap_predicate.hpp │ ├── preprocessor │ │ ├── binary_seq_for_each.hpp │ │ ├── binary_seq_for_each_inc.hpp │ │ ├── binary_seq_to_args.hpp │ │ ├── convert_binary_seq.hpp │ │ ├── flatten.hpp │ │ ├── for_each.hpp │ │ ├── for_each_pred.hpp │ │ ├── impl │ │ │ ├── argument_specs.hpp │ │ │ ├── arity_range.hpp │ │ │ ├── flatten.hpp │ │ │ ├── for_each.hpp │ │ │ ├── forwarding_overloads.hpp │ │ │ ├── function_cast.hpp │ │ │ ├── function_dispatch_layer.hpp │ │ │ ├── function_dispatch_tuple.hpp │ │ │ ├── function_forward_match.hpp │ │ │ ├── function_name.hpp │ │ │ ├── no_spec_overloads.hpp │ │ │ ├── parenthesized_return_type.hpp │ │ │ ├── parenthesized_type.hpp │ │ │ ├── specification.hpp │ │ │ └── split_args.hpp │ │ ├── inc_binary_seq.hpp │ │ ├── is_binary.hpp │ │ ├── is_nullary.hpp │ │ ├── no_perfect_forwarding_begin.hpp │ │ ├── no_perfect_forwarding_end.hpp │ │ ├── nullptr.hpp │ │ ├── overloads.hpp │ │ ├── qualifier.hpp │ │ ├── seq_enum.hpp │ │ └── seq_merge.hpp │ ├── result_of0.hpp │ ├── set.hpp │ ├── tag.hpp │ ├── tagged_argument.hpp │ ├── tagged_argument_fwd.hpp │ ├── template_keyword.hpp │ ├── unwrap_cv_reference.hpp │ ├── use_default.hpp │ ├── use_default_tag.hpp │ ├── void.hpp │ └── yesno.hpp │ ├── binding.hpp │ ├── compose.hpp │ ├── config.hpp │ ├── deduced.hpp │ ├── is_argument_pack.hpp │ ├── keyword.hpp │ ├── keyword_fwd.hpp │ ├── macros.hpp │ ├── match.hpp │ ├── name.hpp │ ├── nested_keyword.hpp │ ├── optional.hpp │ ├── parameters.hpp │ ├── preprocessor.hpp │ ├── preprocessor_no_spec.hpp │ ├── required.hpp │ ├── template_keyword.hpp │ └── value_type.hpp ├── index.html ├── meta └── libraries.json └── test ├── CMakeLists.txt ├── Jamfile.v2 ├── basics.cpp ├── basics.hpp ├── compose.cpp ├── deduced.cpp ├── deduced.hpp ├── deduced_dependent_predicate.cpp ├── deduced_unmatched_arg.cpp ├── duplicates.cpp ├── earwicker.cpp ├── efficiency.cpp ├── evaluate_category.cpp ├── evaluate_category.hpp ├── evaluate_category_10.cpp ├── evaluate_category_16.cpp ├── function_type_tpl_param.cpp ├── literate ├── README ├── building-argumentpacks0.cpp ├── class-template-skeleton0.cpp ├── deduced-parameters0.cpp ├── deduced-template-parameters0.cpp ├── default-expression-evaluation0.cpp ├── defining-the-keywords0.cpp ├── defining-the-keywords1.cpp ├── exercising-the-code-so-far0.cpp ├── extracting-parameter-types0.cpp ├── extracting-parameter-types1.cpp ├── fine-grained-name-control0.cpp ├── handling-out-parameters0.cpp ├── headers-and-namespaces0.cpp ├── lazy-default-computation0.cpp ├── lazy-default-computation1.cpp ├── namespaces0.cpp ├── namespaces1.cpp ├── namespaces2.cpp ├── namespaces3.cpp ├── optional-parameters0.cpp ├── parameter-enabled-constructors0.cpp ├── parameter-enabled-function-call-operators0.cpp ├── parameter-enabled-member-functions0.cpp ├── parameter-enabled-member-functions1.cpp ├── predicate-requirements0.cpp ├── required-parameters0.cpp ├── static-member-functions0.cpp ├── template-keywords0.cpp ├── template-keywords1.cpp ├── top-level0.cpp └── writing-the-function0.cpp ├── macros.cpp ├── macros_eval_category.cpp ├── maybe.cpp ├── mpl.cpp ├── normalized_argument_types.cpp ├── ntp.cpp ├── optional_deduced_sfinae.cpp ├── parameterized_inheritance.cpp ├── preprocessor.cpp ├── preprocessor_deduced.cpp ├── preprocessor_eval_cat_8.cpp ├── preprocessor_eval_cat_no_spec.cpp ├── preprocessor_eval_category.cpp ├── sfinae.cpp ├── singular.cpp ├── timer.hpp ├── timings.txt ├── tutorial.cpp └── unwrap_cv_reference.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/appveyor.yml -------------------------------------------------------------------------------- /config/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/config/Jamfile.v2 -------------------------------------------------------------------------------- /config/graph_supported.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/config/graph_supported.cpp -------------------------------------------------------------------------------- /doc/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/doc/Jamfile.v2 -------------------------------------------------------------------------------- /doc/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/doc/html/index.html -------------------------------------------------------------------------------- /doc/html/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/doc/html/reference.html -------------------------------------------------------------------------------- /doc/html/rst.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/doc/html/rst.css -------------------------------------------------------------------------------- /doc/html/vellipsis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/doc/html/vellipsis.gif -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/doc/reference.rst -------------------------------------------------------------------------------- /include/boost/parameter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter.hpp -------------------------------------------------------------------------------- /include/boost/parameter/are_tagged_arguments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/are_tagged_arguments.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/always_true_predicate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/always_true_predicate.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/arg_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/arg_list.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/as_lvalue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/as_lvalue.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/augment_predicate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/augment_predicate.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/cast.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/default.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/default.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/has_nested_template_fn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/has_nested_template_fn.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/is_maybe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/is_maybe.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/is_placeholder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/is_placeholder.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/is_tagged_argument.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/is_tagged_argument.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/lambda_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/lambda_tag.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/maybe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/maybe.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/name.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pack/as_parameter_requirements.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pack/as_parameter_requirements.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pack/deduce_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pack/deduce_tag.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pack/deduced_item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pack/deduced_item.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pack/insert_tagged.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pack/insert_tagged.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pack/is_named_argument.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pack/is_named_argument.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pack/item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pack/item.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pack/make_arg_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pack/make_arg_list.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pack/make_deduced_items.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pack/make_deduced_items.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pack/make_items.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pack/make_items.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pack/make_parameter_spec_items.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pack/make_parameter_spec_items.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pack/parameter_requirements.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pack/parameter_requirements.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pack/predicate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pack/predicate.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pack/satisfies.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pack/satisfies.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pack/tag_deduced.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pack/tag_deduced.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pack/tag_keyword_arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pack/tag_keyword_arg.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pack/tag_keyword_arg_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pack/tag_keyword_arg_ref.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pack/tag_template_keyword_arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pack/tag_template_keyword_arg.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pack/tag_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pack/tag_type.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pack/unmatched_argument.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pack/unmatched_argument.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/parameter_requirements.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/parameter_requirements.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/parenthesized_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/parenthesized_type.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pp_impl/argument_pack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pp_impl/argument_pack.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pp_impl/match.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pp_impl/match.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/pp_impl/unwrap_predicate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/pp_impl/unwrap_predicate.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/binary_seq_for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/binary_seq_for_each.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/binary_seq_for_each_inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/binary_seq_for_each_inc.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/binary_seq_to_args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/binary_seq_to_args.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/convert_binary_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/convert_binary_seq.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/flatten.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/flatten.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/for_each.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/for_each_pred.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/for_each_pred.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/impl/argument_specs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/impl/argument_specs.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/impl/arity_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/impl/arity_range.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/impl/flatten.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/impl/flatten.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/impl/for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/impl/for_each.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/impl/forwarding_overloads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/impl/forwarding_overloads.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/impl/function_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/impl/function_cast.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/impl/function_dispatch_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/impl/function_dispatch_layer.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/impl/function_dispatch_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/impl/function_dispatch_tuple.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/impl/function_forward_match.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/impl/function_forward_match.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/impl/function_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/impl/function_name.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/impl/no_spec_overloads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/impl/no_spec_overloads.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/impl/parenthesized_return_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/impl/parenthesized_return_type.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/impl/parenthesized_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/impl/parenthesized_type.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/impl/specification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/impl/specification.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/impl/split_args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/impl/split_args.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/inc_binary_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/inc_binary_seq.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/is_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/is_binary.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/is_nullary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/is_nullary.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/no_perfect_forwarding_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/no_perfect_forwarding_begin.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/no_perfect_forwarding_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/no_perfect_forwarding_end.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/nullptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/nullptr.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/overloads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/overloads.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/qualifier.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/seq_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/seq_enum.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/preprocessor/seq_merge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/preprocessor/seq_merge.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/result_of0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/result_of0.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/set.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/tag.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/tagged_argument.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/tagged_argument.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/tagged_argument_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/tagged_argument_fwd.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/template_keyword.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/template_keyword.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/unwrap_cv_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/unwrap_cv_reference.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/use_default.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/use_default.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/use_default_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/use_default_tag.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/void.hpp -------------------------------------------------------------------------------- /include/boost/parameter/aux_/yesno.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/aux_/yesno.hpp -------------------------------------------------------------------------------- /include/boost/parameter/binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/binding.hpp -------------------------------------------------------------------------------- /include/boost/parameter/compose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/compose.hpp -------------------------------------------------------------------------------- /include/boost/parameter/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/config.hpp -------------------------------------------------------------------------------- /include/boost/parameter/deduced.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/deduced.hpp -------------------------------------------------------------------------------- /include/boost/parameter/is_argument_pack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/is_argument_pack.hpp -------------------------------------------------------------------------------- /include/boost/parameter/keyword.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/keyword.hpp -------------------------------------------------------------------------------- /include/boost/parameter/keyword_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/keyword_fwd.hpp -------------------------------------------------------------------------------- /include/boost/parameter/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/macros.hpp -------------------------------------------------------------------------------- /include/boost/parameter/match.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/match.hpp -------------------------------------------------------------------------------- /include/boost/parameter/name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/name.hpp -------------------------------------------------------------------------------- /include/boost/parameter/nested_keyword.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/nested_keyword.hpp -------------------------------------------------------------------------------- /include/boost/parameter/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/optional.hpp -------------------------------------------------------------------------------- /include/boost/parameter/parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/parameters.hpp -------------------------------------------------------------------------------- /include/boost/parameter/preprocessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/preprocessor.hpp -------------------------------------------------------------------------------- /include/boost/parameter/preprocessor_no_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/preprocessor_no_spec.hpp -------------------------------------------------------------------------------- /include/boost/parameter/required.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/required.hpp -------------------------------------------------------------------------------- /include/boost/parameter/template_keyword.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/template_keyword.hpp -------------------------------------------------------------------------------- /include/boost/parameter/value_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/include/boost/parameter/value_type.hpp -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/index.html -------------------------------------------------------------------------------- /meta/libraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/meta/libraries.json -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/Jamfile.v2 -------------------------------------------------------------------------------- /test/basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/basics.cpp -------------------------------------------------------------------------------- /test/basics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/basics.hpp -------------------------------------------------------------------------------- /test/compose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/compose.cpp -------------------------------------------------------------------------------- /test/deduced.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/deduced.cpp -------------------------------------------------------------------------------- /test/deduced.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/deduced.hpp -------------------------------------------------------------------------------- /test/deduced_dependent_predicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/deduced_dependent_predicate.cpp -------------------------------------------------------------------------------- /test/deduced_unmatched_arg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/deduced_unmatched_arg.cpp -------------------------------------------------------------------------------- /test/duplicates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/duplicates.cpp -------------------------------------------------------------------------------- /test/earwicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/earwicker.cpp -------------------------------------------------------------------------------- /test/efficiency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/efficiency.cpp -------------------------------------------------------------------------------- /test/evaluate_category.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/evaluate_category.cpp -------------------------------------------------------------------------------- /test/evaluate_category.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/evaluate_category.hpp -------------------------------------------------------------------------------- /test/evaluate_category_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/evaluate_category_10.cpp -------------------------------------------------------------------------------- /test/evaluate_category_16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/evaluate_category_16.cpp -------------------------------------------------------------------------------- /test/function_type_tpl_param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/function_type_tpl_param.cpp -------------------------------------------------------------------------------- /test/literate/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/README -------------------------------------------------------------------------------- /test/literate/building-argumentpacks0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/building-argumentpacks0.cpp -------------------------------------------------------------------------------- /test/literate/class-template-skeleton0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/class-template-skeleton0.cpp -------------------------------------------------------------------------------- /test/literate/deduced-parameters0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/deduced-parameters0.cpp -------------------------------------------------------------------------------- /test/literate/deduced-template-parameters0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/deduced-template-parameters0.cpp -------------------------------------------------------------------------------- /test/literate/default-expression-evaluation0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/default-expression-evaluation0.cpp -------------------------------------------------------------------------------- /test/literate/defining-the-keywords0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/defining-the-keywords0.cpp -------------------------------------------------------------------------------- /test/literate/defining-the-keywords1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/defining-the-keywords1.cpp -------------------------------------------------------------------------------- /test/literate/exercising-the-code-so-far0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/exercising-the-code-so-far0.cpp -------------------------------------------------------------------------------- /test/literate/extracting-parameter-types0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/extracting-parameter-types0.cpp -------------------------------------------------------------------------------- /test/literate/extracting-parameter-types1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/extracting-parameter-types1.cpp -------------------------------------------------------------------------------- /test/literate/fine-grained-name-control0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/fine-grained-name-control0.cpp -------------------------------------------------------------------------------- /test/literate/handling-out-parameters0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/handling-out-parameters0.cpp -------------------------------------------------------------------------------- /test/literate/headers-and-namespaces0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/headers-and-namespaces0.cpp -------------------------------------------------------------------------------- /test/literate/lazy-default-computation0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/lazy-default-computation0.cpp -------------------------------------------------------------------------------- /test/literate/lazy-default-computation1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/lazy-default-computation1.cpp -------------------------------------------------------------------------------- /test/literate/namespaces0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/namespaces0.cpp -------------------------------------------------------------------------------- /test/literate/namespaces1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/namespaces1.cpp -------------------------------------------------------------------------------- /test/literate/namespaces2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/namespaces2.cpp -------------------------------------------------------------------------------- /test/literate/namespaces3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/namespaces3.cpp -------------------------------------------------------------------------------- /test/literate/optional-parameters0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/optional-parameters0.cpp -------------------------------------------------------------------------------- /test/literate/parameter-enabled-constructors0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/parameter-enabled-constructors0.cpp -------------------------------------------------------------------------------- /test/literate/parameter-enabled-function-call-operators0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/parameter-enabled-function-call-operators0.cpp -------------------------------------------------------------------------------- /test/literate/parameter-enabled-member-functions0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/parameter-enabled-member-functions0.cpp -------------------------------------------------------------------------------- /test/literate/parameter-enabled-member-functions1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/parameter-enabled-member-functions1.cpp -------------------------------------------------------------------------------- /test/literate/predicate-requirements0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/predicate-requirements0.cpp -------------------------------------------------------------------------------- /test/literate/required-parameters0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/required-parameters0.cpp -------------------------------------------------------------------------------- /test/literate/static-member-functions0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/static-member-functions0.cpp -------------------------------------------------------------------------------- /test/literate/template-keywords0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/template-keywords0.cpp -------------------------------------------------------------------------------- /test/literate/template-keywords1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/template-keywords1.cpp -------------------------------------------------------------------------------- /test/literate/top-level0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/top-level0.cpp -------------------------------------------------------------------------------- /test/literate/writing-the-function0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/literate/writing-the-function0.cpp -------------------------------------------------------------------------------- /test/macros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/macros.cpp -------------------------------------------------------------------------------- /test/macros_eval_category.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/macros_eval_category.cpp -------------------------------------------------------------------------------- /test/maybe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/maybe.cpp -------------------------------------------------------------------------------- /test/mpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/mpl.cpp -------------------------------------------------------------------------------- /test/normalized_argument_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/normalized_argument_types.cpp -------------------------------------------------------------------------------- /test/ntp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/ntp.cpp -------------------------------------------------------------------------------- /test/optional_deduced_sfinae.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/optional_deduced_sfinae.cpp -------------------------------------------------------------------------------- /test/parameterized_inheritance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/parameterized_inheritance.cpp -------------------------------------------------------------------------------- /test/preprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/preprocessor.cpp -------------------------------------------------------------------------------- /test/preprocessor_deduced.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/preprocessor_deduced.cpp -------------------------------------------------------------------------------- /test/preprocessor_eval_cat_8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/preprocessor_eval_cat_8.cpp -------------------------------------------------------------------------------- /test/preprocessor_eval_cat_no_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/preprocessor_eval_cat_no_spec.cpp -------------------------------------------------------------------------------- /test/preprocessor_eval_category.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/preprocessor_eval_category.cpp -------------------------------------------------------------------------------- /test/sfinae.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/sfinae.cpp -------------------------------------------------------------------------------- /test/singular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/singular.cpp -------------------------------------------------------------------------------- /test/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/timer.hpp -------------------------------------------------------------------------------- /test/timings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/timings.txt -------------------------------------------------------------------------------- /test/tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/tutorial.cpp -------------------------------------------------------------------------------- /test/unwrap_cv_reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/parameter/HEAD/test/unwrap_cv_reference.cpp --------------------------------------------------------------------------------