├── .drone.star ├── .drone ├── after-success.sh ├── before-install.sh ├── before-script.sh └── boost.sh ├── .gitattributes ├── .github ├── scripts │ └── before-install.sh └── workflows │ └── ci.yml ├── .travis.yml ├── CMakeLists.txt ├── ChangeLog ├── appveyor.yml ├── doc ├── Jamfile ├── acknowledgment.qbk ├── actor.qbk ├── actors.qbk ├── advanced.qbk ├── advanced │ ├── custom_evaluation.qbk │ └── porting.qbk ├── basics.qbk ├── examples.qbk ├── examples │ ├── adding.qbk │ ├── extending_actors.qbk │ └── transforming.qbk ├── html │ ├── boostbook.css │ ├── images │ │ ├── add2.png │ │ ├── add2_call.png │ │ ├── adder.png │ │ ├── alert.png │ │ ├── banner.png │ │ ├── fbox.png │ │ ├── funnel_in.png │ │ ├── funnel_out.png │ │ ├── home.png │ │ ├── important.png │ │ ├── lambda_cpp.png │ │ ├── next.png │ │ ├── note.png │ │ ├── organization.png │ │ ├── organization_alt.png │ │ ├── prev.png │ │ ├── simple_ast.png │ │ ├── smiley.png │ │ ├── tip.png │ │ └── up.png │ ├── index.html │ ├── phoenix-doc_HTML.manifest │ └── phoenix │ │ ├── acknowledgments.html │ │ ├── actor.html │ │ ├── basics.html │ │ ├── examples.html │ │ ├── examples │ │ ├── adding_an_expression.html │ │ ├── extending_actors.html │ │ └── transforming_the_expression_tree.html │ │ ├── inside.html │ │ ├── inside │ │ ├── actions.html │ │ ├── actor.html │ │ ├── custom_terminals.html │ │ ├── expression.html │ │ ├── expression │ │ │ └── boilerplate_macros.html │ │ ├── placeholder_unification.html │ │ └── rules.html │ │ ├── introduction.html │ │ ├── lazy_list.html │ │ ├── lazy_list │ │ ├── background.html │ │ ├── exceptions.html │ │ ├── implementation_details.html │ │ ├── testing.html │ │ ├── tutorial_with_examples.html │ │ ├── tutorial_with_examples │ │ │ ├── arithmetic_functions.html │ │ │ └── list_generation.html │ │ ├── what_is_provided.html │ │ └── where_next_.html │ │ ├── maintenance.html │ │ ├── maintenance │ │ ├── background.html │ │ ├── experience.html │ │ ├── experience │ │ │ ├── bugs_to_be_fixed.html │ │ │ ├── compilers.html │ │ │ └── maintenance_tools.html │ │ ├── method_in_use.html │ │ └── my_understanding_of_how_maintenance_works.html │ │ ├── modules.html │ │ ├── modules │ │ ├── bind.html │ │ ├── bind │ │ │ ├── binding_function_objects.html │ │ │ ├── binding_functions.html │ │ │ ├── binding_member_functions.html │ │ │ ├── binding_member_variables.html │ │ │ └── compatibility_with_boost_bind.html │ │ ├── core.html │ │ ├── core │ │ │ ├── arguments.html │ │ │ ├── nothing.html │ │ │ ├── references.html │ │ │ └── values.html │ │ ├── function.html │ │ ├── function │ │ │ └── adapting_functions.html │ │ ├── object.html │ │ ├── object │ │ │ ├── casts.html │ │ │ ├── construction.html │ │ │ ├── delete.html │ │ │ └── new.html │ │ ├── operator.html │ │ ├── scope.html │ │ ├── scope │ │ │ ├── lambda.html │ │ │ ├── let.html │ │ │ └── local_variables.html │ │ ├── statement.html │ │ ├── statement │ │ │ ├── ___do_while_____statement.html │ │ │ ├── ___if_else_____statement.html │ │ │ ├── block_statement.html │ │ │ ├── for_statement.html │ │ │ ├── if__statement.html │ │ │ ├── switch__statement.html │ │ │ ├── throw_.html │ │ │ ├── try__catch__statement.html │ │ │ └── while__statement.html │ │ ├── stl.html │ │ └── stl │ │ │ ├── algorithm.html │ │ │ └── container.html │ │ ├── organization.html │ │ ├── references.html │ │ ├── release_notes.html │ │ ├── starter_kit.html │ │ ├── starter_kit │ │ ├── arguments.html │ │ ├── construct__new__delete__casts.html │ │ ├── lazy_functions.html │ │ ├── lazy_operators.html │ │ ├── lazy_statements.html │ │ ├── more.html │ │ ├── references.html │ │ └── values.html │ │ ├── what_s_new.html │ │ ├── what_s_new │ │ ├── phoenix_3_0.html │ │ ├── phoenix_3_0_5.html │ │ ├── phoenix_3_0_6__boost_1_57_0_.html │ │ ├── phoenix_3_1_0.html │ │ ├── phoenix_3_1_1.html │ │ ├── phoenix_3_2_0.html │ │ ├── phoenix_3_2_0__boost_1_58_0_.html │ │ └── phoenix___warning_on__lambda_and_let_.html │ │ └── wrap_up.html ├── inside.qbk ├── inside │ ├── actions.qbk │ ├── actor.qbk │ ├── custom_terminal.qbk │ ├── expression.qbk │ ├── placeholder.qbk │ └── rules.qbk ├── introduction.qbk ├── lazy_list.qbk ├── maintenance.qbk ├── modules.qbk ├── modules │ ├── bind.qbk │ ├── core.qbk │ ├── function.qbk │ ├── fusion.qbk │ ├── object.qbk │ ├── operator.qbk │ ├── scope.qbk │ ├── statement.qbk │ └── stl.qbk ├── organisation.qbk ├── phoenix3.qbk ├── preface.qbk ├── references.qbk ├── starter_kit.qbk ├── starter_kit │ ├── arguments.qbk │ ├── function.qbk │ ├── more.qbk │ ├── object.qbk │ ├── operator.qbk │ ├── references.qbk │ ├── statement.qbk │ └── values.qbk ├── what_s_new.qbk └── wrap_up.qbk ├── example ├── adapted_echo_server.cpp ├── all_odds.cpp ├── arguments.cpp ├── bind_goose.cpp ├── callback.cpp ├── container_actor.cpp ├── define_expression.cpp ├── factorial.cpp ├── find_if.cpp ├── function.cpp ├── generator.cpp ├── generator2.cpp ├── identity_transform.cpp ├── if.cpp ├── invert.cpp ├── lambda.cpp ├── parallel_for.cpp ├── references.cpp └── values.cpp ├── include └── boost │ ├── phoenix.hpp │ └── phoenix │ ├── bind.hpp │ ├── bind │ ├── bind_function.hpp │ ├── bind_function_object.hpp │ ├── bind_member_function.hpp │ ├── bind_member_variable.hpp │ └── detail │ │ ├── cpp03 │ │ ├── bind_function.hpp │ │ ├── bind_function_object.hpp │ │ ├── bind_member_function.hpp │ │ ├── function_ptr.hpp │ │ ├── member_function_ptr.hpp │ │ └── preprocessed │ │ │ ├── bind_function.hpp │ │ │ ├── bind_function_10.hpp │ │ │ ├── bind_function_20.hpp │ │ │ ├── bind_function_30.hpp │ │ │ ├── bind_function_40.hpp │ │ │ ├── bind_function_50.hpp │ │ │ ├── bind_function_object.hpp │ │ │ ├── bind_function_object_10.hpp │ │ │ ├── bind_function_object_20.hpp │ │ │ ├── bind_function_object_30.hpp │ │ │ ├── bind_function_object_40.hpp │ │ │ ├── bind_function_object_50.hpp │ │ │ ├── bind_member_function.hpp │ │ │ ├── bind_member_function_10.hpp │ │ │ ├── bind_member_function_20.hpp │ │ │ ├── bind_member_function_30.hpp │ │ │ ├── bind_member_function_40.hpp │ │ │ ├── bind_member_function_50.hpp │ │ │ ├── function_ptr.hpp │ │ │ ├── function_ptr_10.hpp │ │ │ ├── function_ptr_20.hpp │ │ │ ├── function_ptr_30.hpp │ │ │ ├── function_ptr_40.hpp │ │ │ ├── function_ptr_50.hpp │ │ │ ├── member_function_ptr.hpp │ │ │ ├── member_function_ptr_10.hpp │ │ │ ├── member_function_ptr_20.hpp │ │ │ ├── member_function_ptr_30.hpp │ │ │ ├── member_function_ptr_40.hpp │ │ │ └── member_function_ptr_50.hpp │ │ └── member_variable.hpp │ ├── config.hpp │ ├── core.hpp │ ├── core │ ├── actor.hpp │ ├── argument.hpp │ ├── arity.hpp │ ├── as_actor.hpp │ ├── call.hpp │ ├── debug.hpp │ ├── detail │ │ ├── argument.hpp │ │ ├── cpp03 │ │ │ ├── actor_operator.hpp │ │ │ ├── actor_result_of.hpp │ │ │ ├── call.hpp │ │ │ ├── expression.hpp │ │ │ ├── function_eval.hpp │ │ │ ├── function_eval_expr.hpp │ │ │ └── preprocessed │ │ │ │ ├── actor_operator.hpp │ │ │ │ ├── actor_operator_10.hpp │ │ │ │ ├── actor_operator_20.hpp │ │ │ │ ├── actor_operator_30.hpp │ │ │ │ ├── actor_operator_40.hpp │ │ │ │ ├── actor_operator_50.hpp │ │ │ │ ├── actor_result_of.hpp │ │ │ │ ├── actor_result_of_10.hpp │ │ │ │ ├── actor_result_of_20.hpp │ │ │ │ ├── actor_result_of_30.hpp │ │ │ │ ├── actor_result_of_40.hpp │ │ │ │ ├── actor_result_of_50.hpp │ │ │ │ ├── argument.hpp │ │ │ │ ├── argument_no_predefined_10.hpp │ │ │ │ ├── argument_no_predefined_20.hpp │ │ │ │ ├── argument_no_predefined_30.hpp │ │ │ │ ├── argument_no_predefined_40.hpp │ │ │ │ ├── argument_no_predefined_50.hpp │ │ │ │ ├── argument_predefined_10.hpp │ │ │ │ ├── argument_predefined_20.hpp │ │ │ │ ├── argument_predefined_30.hpp │ │ │ │ ├── argument_predefined_40.hpp │ │ │ │ ├── argument_predefined_50.hpp │ │ │ │ ├── call.hpp │ │ │ │ ├── call_10.hpp │ │ │ │ ├── call_20.hpp │ │ │ │ ├── call_30.hpp │ │ │ │ ├── call_40.hpp │ │ │ │ ├── call_50.hpp │ │ │ │ ├── expression.hpp │ │ │ │ ├── expression_10.hpp │ │ │ │ ├── expression_20.hpp │ │ │ │ ├── expression_30.hpp │ │ │ │ ├── expression_40.hpp │ │ │ │ ├── expression_50.hpp │ │ │ │ ├── function_eval.hpp │ │ │ │ ├── function_eval_10.hpp │ │ │ │ ├── function_eval_20.hpp │ │ │ │ ├── function_eval_30.hpp │ │ │ │ ├── function_eval_40.hpp │ │ │ │ ├── function_eval_50.hpp │ │ │ │ ├── function_eval_expr.hpp │ │ │ │ ├── function_eval_expr_10.hpp │ │ │ │ ├── function_eval_expr_20.hpp │ │ │ │ ├── function_eval_expr_30.hpp │ │ │ │ ├── function_eval_expr_40.hpp │ │ │ │ └── function_eval_expr_50.hpp │ │ ├── expression.hpp │ │ ├── function_eval.hpp │ │ └── index_sequence.hpp │ ├── domain.hpp │ ├── environment.hpp │ ├── expression.hpp │ ├── function_equal.hpp │ ├── is_actor.hpp │ ├── is_nullary.hpp │ ├── is_value.hpp │ ├── limits.hpp │ ├── meta_grammar.hpp │ ├── nothing.hpp │ ├── reference.hpp │ ├── terminal.hpp │ ├── terminal_fwd.hpp │ ├── v2_eval.hpp │ └── value.hpp │ ├── debug.hpp │ ├── function.hpp │ ├── function │ ├── adapt_callable.hpp │ ├── adapt_function.hpp │ ├── detail │ │ └── cpp03 │ │ │ ├── function_operator.hpp │ │ │ └── preprocessed │ │ │ ├── function_operator.hpp │ │ │ ├── function_operator_10.hpp │ │ │ ├── function_operator_20.hpp │ │ │ ├── function_operator_30.hpp │ │ │ ├── function_operator_40.hpp │ │ │ └── function_operator_50.hpp │ ├── function.hpp │ ├── lazy_list.hpp │ ├── lazy_operator.hpp │ ├── lazy_prelude.hpp │ ├── lazy_reuse.hpp │ ├── lazy_signature.hpp │ └── lazy_smart.hpp │ ├── fusion.hpp │ ├── fusion │ └── at.hpp │ ├── object.hpp │ ├── object │ ├── const_cast.hpp │ ├── construct.hpp │ ├── delete.hpp │ ├── detail │ │ ├── cpp03 │ │ │ ├── construct.hpp │ │ │ ├── construct_eval.hpp │ │ │ ├── construct_expr.hpp │ │ │ ├── new.hpp │ │ │ ├── new_eval.hpp │ │ │ ├── new_expr.hpp │ │ │ └── preprocessed │ │ │ │ ├── construct.hpp │ │ │ │ ├── construct_10.hpp │ │ │ │ ├── construct_20.hpp │ │ │ │ ├── construct_30.hpp │ │ │ │ ├── construct_40.hpp │ │ │ │ ├── construct_50.hpp │ │ │ │ ├── construct_eval.hpp │ │ │ │ ├── construct_eval_10.hpp │ │ │ │ ├── construct_eval_20.hpp │ │ │ │ ├── construct_eval_30.hpp │ │ │ │ ├── construct_eval_40.hpp │ │ │ │ ├── construct_eval_50.hpp │ │ │ │ ├── construct_expr.hpp │ │ │ │ ├── construct_expr_10.hpp │ │ │ │ ├── construct_expr_20.hpp │ │ │ │ ├── construct_expr_30.hpp │ │ │ │ ├── construct_expr_40.hpp │ │ │ │ ├── construct_expr_50.hpp │ │ │ │ ├── new.hpp │ │ │ │ ├── new_10.hpp │ │ │ │ ├── new_20.hpp │ │ │ │ ├── new_30.hpp │ │ │ │ ├── new_40.hpp │ │ │ │ ├── new_50.hpp │ │ │ │ ├── new_eval.hpp │ │ │ │ ├── new_eval_10.hpp │ │ │ │ ├── new_eval_20.hpp │ │ │ │ ├── new_eval_30.hpp │ │ │ │ ├── new_eval_40.hpp │ │ │ │ ├── new_eval_50.hpp │ │ │ │ ├── new_expr.hpp │ │ │ │ ├── new_expr_10.hpp │ │ │ │ ├── new_expr_20.hpp │ │ │ │ ├── new_expr_30.hpp │ │ │ │ ├── new_expr_40.hpp │ │ │ │ └── new_expr_50.hpp │ │ └── target.hpp │ ├── dynamic_cast.hpp │ ├── new.hpp │ ├── reinterpret_cast.hpp │ └── static_cast.hpp │ ├── operator.hpp │ ├── operator │ ├── arithmetic.hpp │ ├── bitwise.hpp │ ├── comparison.hpp │ ├── detail │ │ ├── cpp03 │ │ │ ├── mem_fun_ptr_eval.hpp │ │ │ ├── mem_fun_ptr_eval_result_of.hpp │ │ │ ├── mem_fun_ptr_expr.hpp │ │ │ ├── mem_fun_ptr_gen.hpp │ │ │ └── preprocessed │ │ │ │ ├── mem_fun_ptr_eval.hpp │ │ │ │ ├── mem_fun_ptr_eval_10.hpp │ │ │ │ ├── mem_fun_ptr_eval_20.hpp │ │ │ │ ├── mem_fun_ptr_eval_30.hpp │ │ │ │ ├── mem_fun_ptr_eval_40.hpp │ │ │ │ ├── mem_fun_ptr_eval_50.hpp │ │ │ │ ├── mem_fun_ptr_eval_result_of.hpp │ │ │ │ ├── mem_fun_ptr_eval_result_of_10.hpp │ │ │ │ ├── mem_fun_ptr_eval_result_of_20.hpp │ │ │ │ ├── mem_fun_ptr_eval_result_of_30.hpp │ │ │ │ ├── mem_fun_ptr_eval_result_of_40.hpp │ │ │ │ ├── mem_fun_ptr_eval_result_of_50.hpp │ │ │ │ ├── mem_fun_ptr_expr.hpp │ │ │ │ ├── mem_fun_ptr_expr_10.hpp │ │ │ │ ├── mem_fun_ptr_expr_20.hpp │ │ │ │ ├── mem_fun_ptr_expr_30.hpp │ │ │ │ ├── mem_fun_ptr_expr_40.hpp │ │ │ │ ├── mem_fun_ptr_expr_50.hpp │ │ │ │ ├── mem_fun_ptr_gen.hpp │ │ │ │ ├── mem_fun_ptr_gen_10.hpp │ │ │ │ ├── mem_fun_ptr_gen_20.hpp │ │ │ │ ├── mem_fun_ptr_gen_30.hpp │ │ │ │ ├── mem_fun_ptr_gen_40.hpp │ │ │ │ └── mem_fun_ptr_gen_50.hpp │ │ ├── define_operator.hpp │ │ └── undef_operator.hpp │ ├── if_else.hpp │ ├── io.hpp │ ├── logical.hpp │ ├── member.hpp │ └── self.hpp │ ├── phoenix.hpp │ ├── scope.hpp │ ├── scope │ ├── detail │ │ ├── cpp03 │ │ │ ├── dynamic.hpp │ │ │ ├── lambda.hpp │ │ │ ├── local_gen.hpp │ │ │ └── preprocessed │ │ │ │ ├── dynamic.hpp │ │ │ │ ├── dynamic_10.hpp │ │ │ │ ├── dynamic_20.hpp │ │ │ │ ├── dynamic_30.hpp │ │ │ │ ├── dynamic_40.hpp │ │ │ │ ├── dynamic_50.hpp │ │ │ │ ├── lambda.hpp │ │ │ │ ├── lambda_10.hpp │ │ │ │ ├── lambda_20.hpp │ │ │ │ ├── lambda_30.hpp │ │ │ │ ├── lambda_40.hpp │ │ │ │ └── lambda_50.hpp │ │ ├── local_gen.hpp │ │ └── local_variable.hpp │ ├── dynamic.hpp │ ├── lambda.hpp │ ├── let.hpp │ ├── local_variable.hpp │ ├── scoped_environment.hpp │ └── this.hpp │ ├── statement.hpp │ ├── statement │ ├── detail │ │ ├── catch_push_back.hpp │ │ ├── preprocessed │ │ │ ├── catch_push_back.hpp │ │ │ ├── catch_push_back_10.hpp │ │ │ ├── catch_push_back_20.hpp │ │ │ ├── catch_push_back_30.hpp │ │ │ ├── catch_push_back_40.hpp │ │ │ ├── catch_push_back_50.hpp │ │ │ ├── switch.hpp │ │ │ ├── switch_10.hpp │ │ │ ├── switch_20.hpp │ │ │ ├── switch_30.hpp │ │ │ ├── switch_40.hpp │ │ │ ├── switch_50.hpp │ │ │ ├── try_catch_eval.hpp │ │ │ ├── try_catch_eval_10.hpp │ │ │ ├── try_catch_eval_20.hpp │ │ │ ├── try_catch_eval_30.hpp │ │ │ ├── try_catch_eval_40.hpp │ │ │ ├── try_catch_eval_50.hpp │ │ │ ├── try_catch_expression.hpp │ │ │ ├── try_catch_expression_10.hpp │ │ │ ├── try_catch_expression_20.hpp │ │ │ ├── try_catch_expression_30.hpp │ │ │ ├── try_catch_expression_40.hpp │ │ │ └── try_catch_expression_50.hpp │ │ ├── switch.hpp │ │ ├── try_catch_eval.hpp │ │ └── try_catch_expression.hpp │ ├── do_while.hpp │ ├── for.hpp │ ├── if.hpp │ ├── sequence.hpp │ ├── switch.hpp │ ├── throw.hpp │ ├── try_catch.hpp │ └── while.hpp │ ├── stl.hpp │ ├── stl │ ├── algorithm.hpp │ ├── algorithm │ │ ├── detail │ │ │ ├── begin.hpp │ │ │ ├── decay_array.hpp │ │ │ ├── end.hpp │ │ │ ├── has_equal_range.hpp │ │ │ ├── has_find.hpp │ │ │ ├── has_lower_bound.hpp │ │ │ ├── has_remove.hpp │ │ │ ├── has_remove_if.hpp │ │ │ ├── has_reverse.hpp │ │ │ ├── has_sort.hpp │ │ │ ├── has_unique.hpp │ │ │ ├── has_upper_bound.hpp │ │ │ ├── is_std_hash_map.hpp │ │ │ ├── is_std_hash_set.hpp │ │ │ ├── is_std_list.hpp │ │ │ ├── is_std_map.hpp │ │ │ ├── is_std_set.hpp │ │ │ └── is_unordered_set_or_map.hpp │ │ ├── iteration.hpp │ │ ├── querying.hpp │ │ └── transformation.hpp │ ├── cmath.hpp │ ├── container.hpp │ ├── container │ │ ├── container.hpp │ │ └── detail │ │ │ └── container.hpp │ └── tuple.hpp │ ├── support │ ├── detail │ │ ├── iterate.hpp │ │ ├── iterate_define.hpp │ │ └── iterate_undef.hpp │ ├── iterate.hpp │ ├── preprocessed │ │ ├── vector.hpp │ │ ├── vector_10.hpp │ │ ├── vector_20.hpp │ │ ├── vector_30.hpp │ │ ├── vector_40.hpp │ │ └── vector_50.hpp │ ├── preprocessor │ │ └── round.hpp │ └── vector.hpp │ └── version.hpp ├── index.html ├── meta ├── explicit-failures-markup.xml └── libraries.json ├── preprocess ├── Jamfile.v2 ├── preprocess_phoenix.cpp ├── wave-msvc-10.0.cfg └── wave.cfg └── test ├── Jamfile ├── algorithm ├── for_each.cpp ├── for_each2.cpp ├── for_test.cpp ├── for_test2.cpp ├── iteration.cpp ├── querying.cpp ├── querying2.cpp ├── querying_find.cpp ├── querying_find2.cpp ├── transformation1.cpp ├── transformation2.cpp ├── transformation3.cpp └── transformation4.cpp ├── bind ├── bind_function_object_tests.cpp ├── bind_function_tests.cpp ├── bind_member_function_tests.cpp ├── bind_member_variable_tests.cpp └── bug5782.cpp ├── bll_compatibility ├── algorithm_test.cpp ├── bind_tests_advanced.cpp ├── bind_tests_simple.cpp ├── bind_tests_simple_f_refs.cpp ├── bll_and_function.cpp ├── cast_test.cpp ├── constructor_tests.cpp ├── control_structures.cpp ├── exception_test.cpp ├── extending_rt_traits.cpp ├── is_instance_of_test.cpp ├── istreambuf_test.cpp ├── member_pointer_test.cpp ├── operator_tests_simple.cpp ├── phoenix_control_structures.cpp ├── result_of_tests.cpp ├── ret_test.cpp ├── rvalue_test.cpp └── switch_construct.cpp ├── boost_bind_compatibility ├── bind_and_or_test.cpp ├── bind_cdecl_mf_test.cpp ├── bind_const_test.cpp ├── bind_cv_test.cpp ├── bind_dm1_test.cpp ├── bind_dm2_test.cpp ├── bind_dm3_test.cpp ├── bind_dm_test.cpp ├── bind_eq2_test.cpp ├── bind_eq3_test.cpp ├── bind_eq_test.cpp ├── bind_fastcall_mf_test.cpp ├── bind_fastcall_test.cpp ├── bind_fn2_test.cpp ├── bind_fnobj2_test.cpp ├── bind_function_test.cpp ├── bind_interoperation_test.cpp ├── bind_lookup_problem_test.cpp ├── bind_mf2_test.cpp ├── bind_not_test.cpp ├── bind_placeholder_test.cpp ├── bind_ref_test.cpp ├── bind_rel_test.cpp ├── bind_rv_sp1_test.cpp ├── bind_rv_sp2_test.cpp ├── bind_rv_sp3_test.cpp ├── bind_rv_sp4_test.cpp ├── bind_rv_sp5_test.cpp ├── bind_rv_sp6_test.cpp ├── bind_rv_sp7_test.cpp ├── bind_rv_sp_test.cpp ├── bind_rvalue_test.cpp ├── bind_stateful_test.cpp ├── bind_stdcall_mf_test.cpp ├── bind_stdcall_test.cpp ├── bind_test.cpp ├── bind_unary_addr.cpp ├── bind_void_dm_test.cpp ├── bind_void_mf_test.cpp └── bind_void_test.cpp ├── container ├── container_tests.hpp ├── container_tests10a.cpp ├── container_tests10b.cpp ├── container_tests11a.cpp ├── container_tests11b.cpp ├── container_tests12a.cpp ├── container_tests12b.cpp ├── container_tests1a.cpp ├── container_tests1b.cpp ├── container_tests2a.cpp ├── container_tests2b.cpp ├── container_tests3a.cpp ├── container_tests3b.cpp ├── container_tests4a.cpp ├── container_tests4b.cpp ├── container_tests5a.cpp ├── container_tests5b.cpp ├── container_tests6a.cpp ├── container_tests6b.cpp ├── container_tests7a.cpp ├── container_tests7b.cpp ├── container_tests8a.cpp ├── container_tests8b.cpp ├── container_tests9a.cpp └── container_tests9b.cpp ├── core ├── custom_terminal.cpp ├── intel_test.cpp └── primitives_tests.cpp ├── function ├── adapt_function.cpp ├── function_tests.cpp ├── lazy_argument_tests.cpp ├── lazy_compose_tests.cpp ├── lazy_fold_tests.cpp ├── lazy_list2_tests.cpp ├── lazy_list3_tests.cpp ├── lazy_list_tests.cpp ├── lazy_make_pair_tests.cpp ├── lazy_operator_tests.cpp ├── lazy_ptr_tests.cpp ├── lazy_scan_tests.cpp ├── lazy_templated_struct_tests.cpp └── lazy_thunk_tests.cpp ├── include ├── bind.cpp ├── bind │ ├── bind_member_function.cpp │ └── bind_member_variable.cpp ├── core.cpp ├── core │ ├── actor.cpp │ ├── argument.cpp │ ├── arity.cpp │ ├── bug7730.cpp │ ├── call.cpp │ ├── debug.cpp │ ├── domain.cpp │ ├── environment.cpp │ ├── expression.cpp │ ├── function_equal.cpp │ ├── is_actor.cpp │ ├── is_nullary.cpp │ ├── limits.cpp │ ├── meta_grammar.cpp │ ├── nothing.cpp │ ├── reference.cpp │ ├── terminal.cpp │ └── value.cpp ├── function.cpp ├── function │ ├── function.cpp │ └── lazy_headers.cpp ├── fusion.cpp ├── fusion │ └── at.cpp ├── fusion_at.cpp ├── object.cpp ├── object │ ├── const_cast.cpp │ ├── construct.cpp │ ├── delete.cpp │ ├── dynamic_cast.cpp │ ├── new.cpp │ ├── reinterpret_cast.cpp │ └── static_cast.cpp ├── operator.cpp ├── operator │ ├── arithmetic.cpp │ ├── bitwise.cpp │ ├── comparison.cpp │ ├── if_else.cpp │ ├── io.cpp │ ├── logical.cpp │ ├── member.cpp │ └── self.cpp ├── phoenix.cpp ├── scope.cpp ├── scope │ ├── dynamic.cpp │ ├── lambda.cpp │ ├── let.cpp │ ├── local_variable.cpp │ ├── scoped_environment.cpp │ └── this.cpp ├── spirit.cpp ├── spirit_no_specialize.cpp ├── statement.cpp ├── statement │ ├── do_while.cpp │ ├── for.cpp │ ├── if.cpp │ ├── sequence.cpp │ ├── switch.cpp │ ├── throw.cpp │ ├── try_catch.cpp │ └── while.cpp ├── stl.cpp ├── stl │ ├── algorithm.cpp │ ├── algorithm │ │ ├── iteration.cpp │ │ ├── querying.cpp │ │ └── transformation.cpp │ ├── container.cpp │ └── container │ │ └── container.cpp ├── support │ ├── iterate.cpp │ └── preprocessor │ │ └── round.cpp └── version.cpp ├── object ├── cast_tests.cpp └── new_delete_tests.cpp ├── operator ├── arithmetic_tests.cpp ├── bitwise_tests.cpp ├── comparison_tests.cpp ├── if_else_tests.cpp ├── io_tests.cpp ├── logical_tests.cpp ├── member.cpp ├── misc_binary_tests.cpp ├── self_tests.cpp └── unary_tests.cpp ├── regression ├── actor_assignment.cpp ├── bug4853.cpp ├── bug5626.cpp ├── bug5824.cpp ├── bug5875.cpp ├── bug5968.cpp ├── bug6040.cpp ├── bug6268.cpp ├── bug7165.cpp ├── bug7166.cpp ├── bug7624.cpp └── from_array.cpp ├── scope ├── bug3289.cpp ├── bug8298.cpp ├── bug8298f.cpp ├── bug_000008.cpp ├── dynamic_tests.cpp ├── lambda_tests1.cpp ├── lambda_tests10.cpp ├── lambda_tests11.cpp ├── lambda_tests12.cpp ├── lambda_tests13.cpp ├── lambda_tests14.cpp ├── lambda_tests15.cpp ├── lambda_tests16.cpp ├── lambda_tests17.cpp ├── lambda_tests18.cpp ├── lambda_tests19.cpp ├── lambda_tests2.cpp ├── lambda_tests20.cpp ├── lambda_tests21.cpp ├── lambda_tests22.cpp ├── lambda_tests23.cpp ├── lambda_tests3.cpp ├── lambda_tests4.cpp ├── lambda_tests5.cpp ├── lambda_tests6.cpp ├── lambda_tests7.cpp ├── lambda_tests8.cpp ├── lambda_tests9.cpp ├── let_tests.cpp ├── let_tests_113.cpp ├── let_tests_113a.cpp ├── let_tests_157.cpp ├── let_tests_157a.cpp ├── let_tests_rest.cpp ├── more_lambda_tests.cpp ├── more_let_tests.cpp ├── more_let_tests1.cpp ├── more_let_tests2.cpp ├── more_let_tests2a.cpp ├── more_let_tests2b.cpp └── this.cpp ├── statement ├── bug5715.cpp ├── exceptions.cpp ├── if_tests.cpp ├── loops_tests.cpp └── switch_tests.cpp ├── stdlib └── cmath.cpp └── tuple └── tuple_test.cpp /.drone.star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/.drone.star -------------------------------------------------------------------------------- /.drone/after-success.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | 4 | -------------------------------------------------------------------------------- /.drone/before-install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | 4 | -------------------------------------------------------------------------------- /.drone/before-script.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | 4 | -------------------------------------------------------------------------------- /.drone/boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/.drone/boost.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/scripts/before-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/.github/scripts/before-install.sh -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/ChangeLog -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/appveyor.yml -------------------------------------------------------------------------------- /doc/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/Jamfile -------------------------------------------------------------------------------- /doc/acknowledgment.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/acknowledgment.qbk -------------------------------------------------------------------------------- /doc/actor.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/actor.qbk -------------------------------------------------------------------------------- /doc/actors.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/actors.qbk -------------------------------------------------------------------------------- /doc/advanced.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/advanced.qbk -------------------------------------------------------------------------------- /doc/advanced/custom_evaluation.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/advanced/custom_evaluation.qbk -------------------------------------------------------------------------------- /doc/advanced/porting.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/advanced/porting.qbk -------------------------------------------------------------------------------- /doc/basics.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/basics.qbk -------------------------------------------------------------------------------- /doc/examples.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/examples.qbk -------------------------------------------------------------------------------- /doc/examples/adding.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/examples/adding.qbk -------------------------------------------------------------------------------- /doc/examples/extending_actors.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/examples/extending_actors.qbk -------------------------------------------------------------------------------- /doc/examples/transforming.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/examples/transforming.qbk -------------------------------------------------------------------------------- /doc/html/boostbook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/boostbook.css -------------------------------------------------------------------------------- /doc/html/images/add2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/images/add2.png -------------------------------------------------------------------------------- /doc/html/images/add2_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/images/add2_call.png -------------------------------------------------------------------------------- /doc/html/images/adder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/images/adder.png -------------------------------------------------------------------------------- /doc/html/images/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/images/alert.png -------------------------------------------------------------------------------- /doc/html/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/images/banner.png -------------------------------------------------------------------------------- /doc/html/images/fbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/images/fbox.png -------------------------------------------------------------------------------- /doc/html/images/funnel_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/images/funnel_in.png -------------------------------------------------------------------------------- /doc/html/images/funnel_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/images/funnel_out.png -------------------------------------------------------------------------------- /doc/html/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/images/home.png -------------------------------------------------------------------------------- /doc/html/images/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/images/important.png -------------------------------------------------------------------------------- /doc/html/images/lambda_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/images/lambda_cpp.png -------------------------------------------------------------------------------- /doc/html/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/images/next.png -------------------------------------------------------------------------------- /doc/html/images/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/images/note.png -------------------------------------------------------------------------------- /doc/html/images/organization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/images/organization.png -------------------------------------------------------------------------------- /doc/html/images/organization_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/images/organization_alt.png -------------------------------------------------------------------------------- /doc/html/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/images/prev.png -------------------------------------------------------------------------------- /doc/html/images/simple_ast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/images/simple_ast.png -------------------------------------------------------------------------------- /doc/html/images/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/images/smiley.png -------------------------------------------------------------------------------- /doc/html/images/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/images/tip.png -------------------------------------------------------------------------------- /doc/html/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/images/up.png -------------------------------------------------------------------------------- /doc/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/index.html -------------------------------------------------------------------------------- /doc/html/phoenix-doc_HTML.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix-doc_HTML.manifest -------------------------------------------------------------------------------- /doc/html/phoenix/acknowledgments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/acknowledgments.html -------------------------------------------------------------------------------- /doc/html/phoenix/actor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/actor.html -------------------------------------------------------------------------------- /doc/html/phoenix/basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/basics.html -------------------------------------------------------------------------------- /doc/html/phoenix/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/examples.html -------------------------------------------------------------------------------- /doc/html/phoenix/examples/adding_an_expression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/examples/adding_an_expression.html -------------------------------------------------------------------------------- /doc/html/phoenix/examples/extending_actors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/examples/extending_actors.html -------------------------------------------------------------------------------- /doc/html/phoenix/examples/transforming_the_expression_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/examples/transforming_the_expression_tree.html -------------------------------------------------------------------------------- /doc/html/phoenix/inside.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/inside.html -------------------------------------------------------------------------------- /doc/html/phoenix/inside/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/inside/actions.html -------------------------------------------------------------------------------- /doc/html/phoenix/inside/actor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/inside/actor.html -------------------------------------------------------------------------------- /doc/html/phoenix/inside/custom_terminals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/inside/custom_terminals.html -------------------------------------------------------------------------------- /doc/html/phoenix/inside/expression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/inside/expression.html -------------------------------------------------------------------------------- /doc/html/phoenix/inside/expression/boilerplate_macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/inside/expression/boilerplate_macros.html -------------------------------------------------------------------------------- /doc/html/phoenix/inside/placeholder_unification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/inside/placeholder_unification.html -------------------------------------------------------------------------------- /doc/html/phoenix/inside/rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/inside/rules.html -------------------------------------------------------------------------------- /doc/html/phoenix/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/introduction.html -------------------------------------------------------------------------------- /doc/html/phoenix/lazy_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/lazy_list.html -------------------------------------------------------------------------------- /doc/html/phoenix/lazy_list/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/lazy_list/background.html -------------------------------------------------------------------------------- /doc/html/phoenix/lazy_list/exceptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/lazy_list/exceptions.html -------------------------------------------------------------------------------- /doc/html/phoenix/lazy_list/implementation_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/lazy_list/implementation_details.html -------------------------------------------------------------------------------- /doc/html/phoenix/lazy_list/testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/lazy_list/testing.html -------------------------------------------------------------------------------- /doc/html/phoenix/lazy_list/tutorial_with_examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/lazy_list/tutorial_with_examples.html -------------------------------------------------------------------------------- /doc/html/phoenix/lazy_list/tutorial_with_examples/arithmetic_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/lazy_list/tutorial_with_examples/arithmetic_functions.html -------------------------------------------------------------------------------- /doc/html/phoenix/lazy_list/tutorial_with_examples/list_generation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/lazy_list/tutorial_with_examples/list_generation.html -------------------------------------------------------------------------------- /doc/html/phoenix/lazy_list/what_is_provided.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/lazy_list/what_is_provided.html -------------------------------------------------------------------------------- /doc/html/phoenix/lazy_list/where_next_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/lazy_list/where_next_.html -------------------------------------------------------------------------------- /doc/html/phoenix/maintenance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/maintenance.html -------------------------------------------------------------------------------- /doc/html/phoenix/maintenance/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/maintenance/background.html -------------------------------------------------------------------------------- /doc/html/phoenix/maintenance/experience.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/maintenance/experience.html -------------------------------------------------------------------------------- /doc/html/phoenix/maintenance/experience/bugs_to_be_fixed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/maintenance/experience/bugs_to_be_fixed.html -------------------------------------------------------------------------------- /doc/html/phoenix/maintenance/experience/compilers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/maintenance/experience/compilers.html -------------------------------------------------------------------------------- /doc/html/phoenix/maintenance/experience/maintenance_tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/maintenance/experience/maintenance_tools.html -------------------------------------------------------------------------------- /doc/html/phoenix/maintenance/method_in_use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/maintenance/method_in_use.html -------------------------------------------------------------------------------- /doc/html/phoenix/maintenance/my_understanding_of_how_maintenance_works.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/maintenance/my_understanding_of_how_maintenance_works.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/bind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/bind.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/bind/binding_function_objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/bind/binding_function_objects.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/bind/binding_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/bind/binding_functions.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/bind/binding_member_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/bind/binding_member_functions.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/bind/binding_member_variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/bind/binding_member_variables.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/bind/compatibility_with_boost_bind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/bind/compatibility_with_boost_bind.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/core.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/core/arguments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/core/arguments.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/core/nothing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/core/nothing.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/core/references.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/core/references.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/core/values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/core/values.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/function.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/function/adapting_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/function/adapting_functions.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/object.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/object/casts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/object/casts.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/object/construction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/object/construction.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/object/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/object/delete.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/object/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/object/new.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/operator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/operator.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/scope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/scope.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/scope/lambda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/scope/lambda.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/scope/let.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/scope/let.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/scope/local_variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/scope/local_variables.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/statement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/statement.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/statement/___do_while_____statement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/statement/___do_while_____statement.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/statement/___if_else_____statement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/statement/___if_else_____statement.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/statement/block_statement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/statement/block_statement.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/statement/for_statement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/statement/for_statement.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/statement/if__statement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/statement/if__statement.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/statement/switch__statement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/statement/switch__statement.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/statement/throw_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/statement/throw_.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/statement/try__catch__statement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/statement/try__catch__statement.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/statement/while__statement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/statement/while__statement.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/stl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/stl.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/stl/algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/stl/algorithm.html -------------------------------------------------------------------------------- /doc/html/phoenix/modules/stl/container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/modules/stl/container.html -------------------------------------------------------------------------------- /doc/html/phoenix/organization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/organization.html -------------------------------------------------------------------------------- /doc/html/phoenix/references.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/references.html -------------------------------------------------------------------------------- /doc/html/phoenix/release_notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/release_notes.html -------------------------------------------------------------------------------- /doc/html/phoenix/starter_kit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/starter_kit.html -------------------------------------------------------------------------------- /doc/html/phoenix/starter_kit/arguments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/starter_kit/arguments.html -------------------------------------------------------------------------------- /doc/html/phoenix/starter_kit/construct__new__delete__casts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/starter_kit/construct__new__delete__casts.html -------------------------------------------------------------------------------- /doc/html/phoenix/starter_kit/lazy_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/starter_kit/lazy_functions.html -------------------------------------------------------------------------------- /doc/html/phoenix/starter_kit/lazy_operators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/starter_kit/lazy_operators.html -------------------------------------------------------------------------------- /doc/html/phoenix/starter_kit/lazy_statements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/starter_kit/lazy_statements.html -------------------------------------------------------------------------------- /doc/html/phoenix/starter_kit/more.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/starter_kit/more.html -------------------------------------------------------------------------------- /doc/html/phoenix/starter_kit/references.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/starter_kit/references.html -------------------------------------------------------------------------------- /doc/html/phoenix/starter_kit/values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/starter_kit/values.html -------------------------------------------------------------------------------- /doc/html/phoenix/what_s_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/what_s_new.html -------------------------------------------------------------------------------- /doc/html/phoenix/what_s_new/phoenix_3_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/what_s_new/phoenix_3_0.html -------------------------------------------------------------------------------- /doc/html/phoenix/what_s_new/phoenix_3_0_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/what_s_new/phoenix_3_0_5.html -------------------------------------------------------------------------------- /doc/html/phoenix/what_s_new/phoenix_3_0_6__boost_1_57_0_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/what_s_new/phoenix_3_0_6__boost_1_57_0_.html -------------------------------------------------------------------------------- /doc/html/phoenix/what_s_new/phoenix_3_1_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/what_s_new/phoenix_3_1_0.html -------------------------------------------------------------------------------- /doc/html/phoenix/what_s_new/phoenix_3_1_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/what_s_new/phoenix_3_1_1.html -------------------------------------------------------------------------------- /doc/html/phoenix/what_s_new/phoenix_3_2_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/what_s_new/phoenix_3_2_0.html -------------------------------------------------------------------------------- /doc/html/phoenix/what_s_new/phoenix_3_2_0__boost_1_58_0_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/what_s_new/phoenix_3_2_0__boost_1_58_0_.html -------------------------------------------------------------------------------- /doc/html/phoenix/what_s_new/phoenix___warning_on__lambda_and_let_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/what_s_new/phoenix___warning_on__lambda_and_let_.html -------------------------------------------------------------------------------- /doc/html/phoenix/wrap_up.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/html/phoenix/wrap_up.html -------------------------------------------------------------------------------- /doc/inside.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/inside.qbk -------------------------------------------------------------------------------- /doc/inside/actions.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/inside/actions.qbk -------------------------------------------------------------------------------- /doc/inside/actor.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/inside/actor.qbk -------------------------------------------------------------------------------- /doc/inside/custom_terminal.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/inside/custom_terminal.qbk -------------------------------------------------------------------------------- /doc/inside/expression.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/inside/expression.qbk -------------------------------------------------------------------------------- /doc/inside/placeholder.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/inside/placeholder.qbk -------------------------------------------------------------------------------- /doc/inside/rules.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/inside/rules.qbk -------------------------------------------------------------------------------- /doc/introduction.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/introduction.qbk -------------------------------------------------------------------------------- /doc/lazy_list.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/lazy_list.qbk -------------------------------------------------------------------------------- /doc/maintenance.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/maintenance.qbk -------------------------------------------------------------------------------- /doc/modules.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/modules.qbk -------------------------------------------------------------------------------- /doc/modules/bind.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/modules/bind.qbk -------------------------------------------------------------------------------- /doc/modules/core.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/modules/core.qbk -------------------------------------------------------------------------------- /doc/modules/function.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/modules/function.qbk -------------------------------------------------------------------------------- /doc/modules/fusion.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/modules/fusion.qbk -------------------------------------------------------------------------------- /doc/modules/object.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/modules/object.qbk -------------------------------------------------------------------------------- /doc/modules/operator.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/modules/operator.qbk -------------------------------------------------------------------------------- /doc/modules/scope.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/modules/scope.qbk -------------------------------------------------------------------------------- /doc/modules/statement.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/modules/statement.qbk -------------------------------------------------------------------------------- /doc/modules/stl.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/modules/stl.qbk -------------------------------------------------------------------------------- /doc/organisation.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/organisation.qbk -------------------------------------------------------------------------------- /doc/phoenix3.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/phoenix3.qbk -------------------------------------------------------------------------------- /doc/preface.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/preface.qbk -------------------------------------------------------------------------------- /doc/references.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/references.qbk -------------------------------------------------------------------------------- /doc/starter_kit.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/starter_kit.qbk -------------------------------------------------------------------------------- /doc/starter_kit/arguments.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/starter_kit/arguments.qbk -------------------------------------------------------------------------------- /doc/starter_kit/function.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/starter_kit/function.qbk -------------------------------------------------------------------------------- /doc/starter_kit/more.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/starter_kit/more.qbk -------------------------------------------------------------------------------- /doc/starter_kit/object.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/starter_kit/object.qbk -------------------------------------------------------------------------------- /doc/starter_kit/operator.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/starter_kit/operator.qbk -------------------------------------------------------------------------------- /doc/starter_kit/references.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/starter_kit/references.qbk -------------------------------------------------------------------------------- /doc/starter_kit/statement.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/starter_kit/statement.qbk -------------------------------------------------------------------------------- /doc/starter_kit/values.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/starter_kit/values.qbk -------------------------------------------------------------------------------- /doc/what_s_new.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/what_s_new.qbk -------------------------------------------------------------------------------- /doc/wrap_up.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/doc/wrap_up.qbk -------------------------------------------------------------------------------- /example/adapted_echo_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/example/adapted_echo_server.cpp -------------------------------------------------------------------------------- /example/all_odds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/example/all_odds.cpp -------------------------------------------------------------------------------- /example/arguments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/example/arguments.cpp -------------------------------------------------------------------------------- /example/bind_goose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/example/bind_goose.cpp -------------------------------------------------------------------------------- /example/callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/example/callback.cpp -------------------------------------------------------------------------------- /example/container_actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/example/container_actor.cpp -------------------------------------------------------------------------------- /example/define_expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/example/define_expression.cpp -------------------------------------------------------------------------------- /example/factorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/example/factorial.cpp -------------------------------------------------------------------------------- /example/find_if.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/example/find_if.cpp -------------------------------------------------------------------------------- /example/function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/example/function.cpp -------------------------------------------------------------------------------- /example/generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/example/generator.cpp -------------------------------------------------------------------------------- /example/generator2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/example/generator2.cpp -------------------------------------------------------------------------------- /example/identity_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/example/identity_transform.cpp -------------------------------------------------------------------------------- /example/if.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/example/if.cpp -------------------------------------------------------------------------------- /example/invert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/example/invert.cpp -------------------------------------------------------------------------------- /example/lambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/example/lambda.cpp -------------------------------------------------------------------------------- /example/parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/example/parallel_for.cpp -------------------------------------------------------------------------------- /example/references.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/example/references.cpp -------------------------------------------------------------------------------- /example/values.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/example/values.cpp -------------------------------------------------------------------------------- /include/boost/phoenix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/bind_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/bind_function.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/bind_function_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/bind_function_object.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/bind_member_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/bind_member_function.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/bind_member_variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/bind_member_variable.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/bind_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/bind_function.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/bind_function_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/bind_function_object.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/bind_member_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/bind_member_function.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/function_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/function_ptr.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/member_function_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/member_function_ptr.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/bind/detail/member_variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/bind/detail/member_variable.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/config.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/actor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/actor.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/argument.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/argument.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/arity.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/as_actor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/as_actor.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/call.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/call.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/debug.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/argument.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/argument.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/actor_operator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/actor_operator.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/actor_result_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/actor_result_of.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/call.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/call.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/expression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/expression.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/function_eval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/function_eval.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/function_eval_expr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/function_eval_expr.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/actor_operator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_operator.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/argument.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/argument.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/argument_no_predefined_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/argument_no_predefined_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/argument_no_predefined_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/argument_no_predefined_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/argument_no_predefined_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/argument_no_predefined_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/argument_no_predefined_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/argument_no_predefined_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/argument_no_predefined_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/argument_no_predefined_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/argument_predefined_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/argument_predefined_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/argument_predefined_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/argument_predefined_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/argument_predefined_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/argument_predefined_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/argument_predefined_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/argument_predefined_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/argument_predefined_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/argument_predefined_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/call.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/call.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/call_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/call_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/call_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/call_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/call_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/call_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/call_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/call_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/call_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/call_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/expression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/expression.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/expression_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/expression_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/expression_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/expression_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/expression_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/expression_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/expression_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/expression_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/expression_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/expression_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/expression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/expression.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/function_eval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/function_eval.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/detail/index_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/detail/index_sequence.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/domain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/domain.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/environment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/environment.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/expression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/expression.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/function_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/function_equal.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/is_actor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/is_actor.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/is_nullary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/is_nullary.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/is_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/is_value.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/limits.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/meta_grammar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/meta_grammar.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/nothing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/nothing.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/reference.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/terminal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/terminal.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/terminal_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/terminal_fwd.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/v2_eval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/v2_eval.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/core/value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/core/value.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/debug.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/function.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/function/adapt_callable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/function/adapt_callable.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/function/adapt_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/function/adapt_function.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/function/detail/cpp03/function_operator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/function/detail/cpp03/function_operator.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/function/detail/cpp03/preprocessed/function_operator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/function/detail/cpp03/preprocessed/function_operator.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/function/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/function/function.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/function/lazy_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/function/lazy_list.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/function/lazy_operator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/function/lazy_operator.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/function/lazy_prelude.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/function/lazy_prelude.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/function/lazy_reuse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/function/lazy_reuse.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/function/lazy_signature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/function/lazy_signature.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/function/lazy_smart.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/function/lazy_smart.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/fusion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/fusion.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/fusion/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/fusion/at.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/const_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/const_cast.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/construct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/construct.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/delete.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/delete.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/construct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/construct.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/construct_eval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/construct_eval.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/construct_expr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/construct_expr.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/new.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/new.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/new_eval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/new_eval.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/new_expr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/new_expr.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/construct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/construct.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/construct_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/construct_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/construct_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/construct_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/construct_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/construct_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/construct_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/construct_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/construct_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/construct_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/construct_eval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/construct_eval.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/construct_eval_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/construct_eval_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/construct_eval_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/construct_eval_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/construct_eval_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/construct_eval_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/construct_eval_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/construct_eval_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/construct_eval_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/construct_eval_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/construct_expr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/construct_expr.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/construct_expr_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/construct_expr_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/construct_expr_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/construct_expr_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/construct_expr_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/construct_expr_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/construct_expr_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/construct_expr_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/construct_expr_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/construct_expr_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/new.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/new.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/new_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/new_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/new_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/new_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/new_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/new_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/new_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/new_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/new_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/new_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/new_eval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/new_eval.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/new_eval_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/new_eval_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/new_eval_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/new_eval_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/new_eval_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/new_eval_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/new_eval_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/new_eval_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/new_eval_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/new_eval_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/new_expr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/new_expr.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/new_expr_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/new_expr_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/new_expr_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/new_expr_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/new_expr_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/new_expr_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/new_expr_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/new_expr_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/cpp03/preprocessed/new_expr_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/cpp03/preprocessed/new_expr_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/detail/target.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/detail/target.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/dynamic_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/dynamic_cast.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/new.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/new.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/reinterpret_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/reinterpret_cast.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/object/static_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/object/static_cast.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/arithmetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/arithmetic.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/bitwise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/bitwise.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/comparison.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/comparison.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/mem_fun_ptr_eval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/mem_fun_ptr_eval.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/mem_fun_ptr_eval_result_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/mem_fun_ptr_eval_result_of.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/mem_fun_ptr_expr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/mem_fun_ptr_expr.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/mem_fun_ptr_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/mem_fun_ptr_gen.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/define_operator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/define_operator.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/detail/undef_operator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/detail/undef_operator.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/if_else.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/if_else.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/io.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/logical.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/member.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/member.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/operator/self.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/operator/self.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/phoenix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/phoenix.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/detail/cpp03/dynamic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/detail/cpp03/dynamic.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/detail/cpp03/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/detail/cpp03/lambda.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/detail/cpp03/local_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/detail/cpp03/local_gen.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/detail/cpp03/preprocessed/dynamic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/detail/cpp03/preprocessed/dynamic.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/detail/cpp03/preprocessed/dynamic_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/detail/cpp03/preprocessed/dynamic_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/detail/cpp03/preprocessed/dynamic_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/detail/cpp03/preprocessed/dynamic_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/detail/cpp03/preprocessed/dynamic_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/detail/cpp03/preprocessed/dynamic_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/detail/cpp03/preprocessed/dynamic_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/detail/cpp03/preprocessed/dynamic_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/detail/cpp03/preprocessed/dynamic_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/detail/cpp03/preprocessed/dynamic_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/detail/cpp03/preprocessed/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/detail/cpp03/preprocessed/lambda.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/detail/cpp03/preprocessed/lambda_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/detail/cpp03/preprocessed/lambda_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/detail/cpp03/preprocessed/lambda_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/detail/cpp03/preprocessed/lambda_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/detail/cpp03/preprocessed/lambda_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/detail/cpp03/preprocessed/lambda_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/detail/cpp03/preprocessed/lambda_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/detail/cpp03/preprocessed/lambda_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/detail/cpp03/preprocessed/lambda_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/detail/cpp03/preprocessed/lambda_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/detail/local_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/detail/local_gen.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/detail/local_variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/detail/local_variable.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/dynamic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/dynamic.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/lambda.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/let.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/let.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/local_variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/local_variable.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/scoped_environment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/scoped_environment.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/scope/this.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/scope/this.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/catch_push_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/catch_push_back.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/catch_push_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/catch_push_back.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/catch_push_back_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/catch_push_back_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/catch_push_back_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/catch_push_back_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/catch_push_back_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/catch_push_back_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/catch_push_back_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/catch_push_back_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/catch_push_back_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/catch_push_back_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/switch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/switch.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/switch_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/switch_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/switch_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/switch_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/switch_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/switch_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/switch_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/switch_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/switch_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/switch_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/try_catch_eval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/try_catch_eval.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/try_catch_eval_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/try_catch_eval_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/try_catch_eval_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/try_catch_eval_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/try_catch_eval_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/try_catch_eval_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/try_catch_eval_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/try_catch_eval_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/try_catch_eval_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/try_catch_eval_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/try_catch_expression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/try_catch_expression.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/try_catch_expression_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/try_catch_expression_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/try_catch_expression_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/try_catch_expression_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/try_catch_expression_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/try_catch_expression_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/try_catch_expression_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/try_catch_expression_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/preprocessed/try_catch_expression_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/preprocessed/try_catch_expression_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/switch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/switch.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/try_catch_eval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/try_catch_eval.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/detail/try_catch_expression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/detail/try_catch_expression.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/do_while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/do_while.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/for.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/if.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/sequence.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/switch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/switch.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/throw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/throw.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/try_catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/try_catch.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/statement/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/statement/while.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/detail/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/detail/begin.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/detail/decay_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/detail/decay_array.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/detail/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/detail/end.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/detail/has_equal_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/detail/has_equal_range.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/detail/has_find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/detail/has_find.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/detail/has_lower_bound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/detail/has_lower_bound.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/detail/has_remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/detail/has_remove.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/detail/has_remove_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/detail/has_remove_if.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/detail/has_reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/detail/has_reverse.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/detail/has_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/detail/has_sort.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/detail/has_unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/detail/has_unique.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/detail/has_upper_bound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/detail/has_upper_bound.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/detail/is_std_hash_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/detail/is_std_hash_map.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/detail/is_std_hash_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/detail/is_std_hash_set.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/detail/is_std_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/detail/is_std_list.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/detail/is_std_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/detail/is_std_map.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/detail/is_std_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/detail/is_std_set.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/detail/is_unordered_set_or_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/detail/is_unordered_set_or_map.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/iteration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/iteration.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/querying.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/querying.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/algorithm/transformation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/algorithm/transformation.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/cmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/cmath.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/container.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/container/container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/container/container.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/container/detail/container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/container/detail/container.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/stl/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/stl/tuple.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/support/detail/iterate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/support/detail/iterate.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/support/detail/iterate_define.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/support/detail/iterate_define.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/support/detail/iterate_undef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/support/detail/iterate_undef.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/support/iterate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/support/iterate.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/support/preprocessed/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/support/preprocessed/vector.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/support/preprocessed/vector_10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/support/preprocessed/vector_10.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/support/preprocessed/vector_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/support/preprocessed/vector_20.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/support/preprocessed/vector_30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/support/preprocessed/vector_30.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/support/preprocessed/vector_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/support/preprocessed/vector_40.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/support/preprocessed/vector_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/support/preprocessed/vector_50.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/support/preprocessor/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/support/preprocessor/round.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/support/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/support/vector.hpp -------------------------------------------------------------------------------- /include/boost/phoenix/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/include/boost/phoenix/version.hpp -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/index.html -------------------------------------------------------------------------------- /meta/explicit-failures-markup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/meta/explicit-failures-markup.xml -------------------------------------------------------------------------------- /meta/libraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/meta/libraries.json -------------------------------------------------------------------------------- /preprocess/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/preprocess/Jamfile.v2 -------------------------------------------------------------------------------- /preprocess/preprocess_phoenix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/preprocess/preprocess_phoenix.cpp -------------------------------------------------------------------------------- /preprocess/wave-msvc-10.0.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/preprocess/wave-msvc-10.0.cfg -------------------------------------------------------------------------------- /preprocess/wave.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/preprocess/wave.cfg -------------------------------------------------------------------------------- /test/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/Jamfile -------------------------------------------------------------------------------- /test/algorithm/for_each.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/algorithm/for_each.cpp -------------------------------------------------------------------------------- /test/algorithm/for_each2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/algorithm/for_each2.cpp -------------------------------------------------------------------------------- /test/algorithm/for_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/algorithm/for_test.cpp -------------------------------------------------------------------------------- /test/algorithm/for_test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/algorithm/for_test2.cpp -------------------------------------------------------------------------------- /test/algorithm/iteration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/algorithm/iteration.cpp -------------------------------------------------------------------------------- /test/algorithm/querying.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/algorithm/querying.cpp -------------------------------------------------------------------------------- /test/algorithm/querying2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/algorithm/querying2.cpp -------------------------------------------------------------------------------- /test/algorithm/querying_find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/algorithm/querying_find.cpp -------------------------------------------------------------------------------- /test/algorithm/querying_find2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/algorithm/querying_find2.cpp -------------------------------------------------------------------------------- /test/algorithm/transformation1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/algorithm/transformation1.cpp -------------------------------------------------------------------------------- /test/algorithm/transformation2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/algorithm/transformation2.cpp -------------------------------------------------------------------------------- /test/algorithm/transformation3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/algorithm/transformation3.cpp -------------------------------------------------------------------------------- /test/algorithm/transformation4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/algorithm/transformation4.cpp -------------------------------------------------------------------------------- /test/bind/bind_function_object_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bind/bind_function_object_tests.cpp -------------------------------------------------------------------------------- /test/bind/bind_function_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bind/bind_function_tests.cpp -------------------------------------------------------------------------------- /test/bind/bind_member_function_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bind/bind_member_function_tests.cpp -------------------------------------------------------------------------------- /test/bind/bind_member_variable_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bind/bind_member_variable_tests.cpp -------------------------------------------------------------------------------- /test/bind/bug5782.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bind/bug5782.cpp -------------------------------------------------------------------------------- /test/bll_compatibility/algorithm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bll_compatibility/algorithm_test.cpp -------------------------------------------------------------------------------- /test/bll_compatibility/bind_tests_advanced.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bll_compatibility/bind_tests_advanced.cpp -------------------------------------------------------------------------------- /test/bll_compatibility/bind_tests_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bll_compatibility/bind_tests_simple.cpp -------------------------------------------------------------------------------- /test/bll_compatibility/bind_tests_simple_f_refs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bll_compatibility/bind_tests_simple_f_refs.cpp -------------------------------------------------------------------------------- /test/bll_compatibility/bll_and_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bll_compatibility/bll_and_function.cpp -------------------------------------------------------------------------------- /test/bll_compatibility/cast_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bll_compatibility/cast_test.cpp -------------------------------------------------------------------------------- /test/bll_compatibility/constructor_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bll_compatibility/constructor_tests.cpp -------------------------------------------------------------------------------- /test/bll_compatibility/control_structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bll_compatibility/control_structures.cpp -------------------------------------------------------------------------------- /test/bll_compatibility/exception_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bll_compatibility/exception_test.cpp -------------------------------------------------------------------------------- /test/bll_compatibility/extending_rt_traits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bll_compatibility/extending_rt_traits.cpp -------------------------------------------------------------------------------- /test/bll_compatibility/is_instance_of_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bll_compatibility/is_instance_of_test.cpp -------------------------------------------------------------------------------- /test/bll_compatibility/istreambuf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bll_compatibility/istreambuf_test.cpp -------------------------------------------------------------------------------- /test/bll_compatibility/member_pointer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bll_compatibility/member_pointer_test.cpp -------------------------------------------------------------------------------- /test/bll_compatibility/operator_tests_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bll_compatibility/operator_tests_simple.cpp -------------------------------------------------------------------------------- /test/bll_compatibility/phoenix_control_structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bll_compatibility/phoenix_control_structures.cpp -------------------------------------------------------------------------------- /test/bll_compatibility/result_of_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bll_compatibility/result_of_tests.cpp -------------------------------------------------------------------------------- /test/bll_compatibility/ret_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bll_compatibility/ret_test.cpp -------------------------------------------------------------------------------- /test/bll_compatibility/rvalue_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bll_compatibility/rvalue_test.cpp -------------------------------------------------------------------------------- /test/bll_compatibility/switch_construct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/bll_compatibility/switch_construct.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_and_or_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_and_or_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_cdecl_mf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_cdecl_mf_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_const_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_const_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_cv_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_cv_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_dm1_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_dm1_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_dm2_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_dm2_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_dm3_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_dm3_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_dm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_dm_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_eq2_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_eq2_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_eq3_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_eq3_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_eq_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_eq_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_fastcall_mf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_fastcall_mf_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_fastcall_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_fastcall_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_fn2_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_fn2_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_fnobj2_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_fnobj2_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_function_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_function_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_interoperation_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_interoperation_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_lookup_problem_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_lookup_problem_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_mf2_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_mf2_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_not_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_not_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_placeholder_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_placeholder_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_ref_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_ref_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_rel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_rel_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_rv_sp1_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_rv_sp1_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_rv_sp2_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_rv_sp2_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_rv_sp3_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_rv_sp3_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_rv_sp4_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_rv_sp4_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_rv_sp5_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_rv_sp5_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_rv_sp6_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_rv_sp6_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_rv_sp7_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_rv_sp7_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_rv_sp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_rv_sp_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_rvalue_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_rvalue_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_stateful_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_stateful_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_stdcall_mf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_stdcall_mf_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_stdcall_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_stdcall_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_unary_addr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_unary_addr.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_void_dm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_void_dm_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_void_mf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_void_mf_test.cpp -------------------------------------------------------------------------------- /test/boost_bind_compatibility/bind_void_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/boost_bind_compatibility/bind_void_test.cpp -------------------------------------------------------------------------------- /test/container/container_tests.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests.hpp -------------------------------------------------------------------------------- /test/container/container_tests10a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests10a.cpp -------------------------------------------------------------------------------- /test/container/container_tests10b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests10b.cpp -------------------------------------------------------------------------------- /test/container/container_tests11a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests11a.cpp -------------------------------------------------------------------------------- /test/container/container_tests11b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests11b.cpp -------------------------------------------------------------------------------- /test/container/container_tests12a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests12a.cpp -------------------------------------------------------------------------------- /test/container/container_tests12b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests12b.cpp -------------------------------------------------------------------------------- /test/container/container_tests1a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests1a.cpp -------------------------------------------------------------------------------- /test/container/container_tests1b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests1b.cpp -------------------------------------------------------------------------------- /test/container/container_tests2a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests2a.cpp -------------------------------------------------------------------------------- /test/container/container_tests2b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests2b.cpp -------------------------------------------------------------------------------- /test/container/container_tests3a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests3a.cpp -------------------------------------------------------------------------------- /test/container/container_tests3b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests3b.cpp -------------------------------------------------------------------------------- /test/container/container_tests4a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests4a.cpp -------------------------------------------------------------------------------- /test/container/container_tests4b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests4b.cpp -------------------------------------------------------------------------------- /test/container/container_tests5a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests5a.cpp -------------------------------------------------------------------------------- /test/container/container_tests5b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests5b.cpp -------------------------------------------------------------------------------- /test/container/container_tests6a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests6a.cpp -------------------------------------------------------------------------------- /test/container/container_tests6b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests6b.cpp -------------------------------------------------------------------------------- /test/container/container_tests7a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests7a.cpp -------------------------------------------------------------------------------- /test/container/container_tests7b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests7b.cpp -------------------------------------------------------------------------------- /test/container/container_tests8a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests8a.cpp -------------------------------------------------------------------------------- /test/container/container_tests8b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests8b.cpp -------------------------------------------------------------------------------- /test/container/container_tests9a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests9a.cpp -------------------------------------------------------------------------------- /test/container/container_tests9b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/container/container_tests9b.cpp -------------------------------------------------------------------------------- /test/core/custom_terminal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/core/custom_terminal.cpp -------------------------------------------------------------------------------- /test/core/intel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/core/intel_test.cpp -------------------------------------------------------------------------------- /test/core/primitives_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/core/primitives_tests.cpp -------------------------------------------------------------------------------- /test/function/adapt_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/function/adapt_function.cpp -------------------------------------------------------------------------------- /test/function/function_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/function/function_tests.cpp -------------------------------------------------------------------------------- /test/function/lazy_argument_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/function/lazy_argument_tests.cpp -------------------------------------------------------------------------------- /test/function/lazy_compose_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/function/lazy_compose_tests.cpp -------------------------------------------------------------------------------- /test/function/lazy_fold_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/function/lazy_fold_tests.cpp -------------------------------------------------------------------------------- /test/function/lazy_list2_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/function/lazy_list2_tests.cpp -------------------------------------------------------------------------------- /test/function/lazy_list3_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/function/lazy_list3_tests.cpp -------------------------------------------------------------------------------- /test/function/lazy_list_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/function/lazy_list_tests.cpp -------------------------------------------------------------------------------- /test/function/lazy_make_pair_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/function/lazy_make_pair_tests.cpp -------------------------------------------------------------------------------- /test/function/lazy_operator_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/function/lazy_operator_tests.cpp -------------------------------------------------------------------------------- /test/function/lazy_ptr_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/function/lazy_ptr_tests.cpp -------------------------------------------------------------------------------- /test/function/lazy_scan_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/function/lazy_scan_tests.cpp -------------------------------------------------------------------------------- /test/function/lazy_templated_struct_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/function/lazy_templated_struct_tests.cpp -------------------------------------------------------------------------------- /test/function/lazy_thunk_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/function/lazy_thunk_tests.cpp -------------------------------------------------------------------------------- /test/include/bind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/bind.cpp -------------------------------------------------------------------------------- /test/include/bind/bind_member_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/bind/bind_member_function.cpp -------------------------------------------------------------------------------- /test/include/bind/bind_member_variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/bind/bind_member_variable.cpp -------------------------------------------------------------------------------- /test/include/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/core.cpp -------------------------------------------------------------------------------- /test/include/core/actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/core/actor.cpp -------------------------------------------------------------------------------- /test/include/core/argument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/core/argument.cpp -------------------------------------------------------------------------------- /test/include/core/arity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/core/arity.cpp -------------------------------------------------------------------------------- /test/include/core/bug7730.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/core/bug7730.cpp -------------------------------------------------------------------------------- /test/include/core/call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/core/call.cpp -------------------------------------------------------------------------------- /test/include/core/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/core/debug.cpp -------------------------------------------------------------------------------- /test/include/core/domain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/core/domain.cpp -------------------------------------------------------------------------------- /test/include/core/environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/core/environment.cpp -------------------------------------------------------------------------------- /test/include/core/expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/core/expression.cpp -------------------------------------------------------------------------------- /test/include/core/function_equal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/core/function_equal.cpp -------------------------------------------------------------------------------- /test/include/core/is_actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/core/is_actor.cpp -------------------------------------------------------------------------------- /test/include/core/is_nullary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/core/is_nullary.cpp -------------------------------------------------------------------------------- /test/include/core/limits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/core/limits.cpp -------------------------------------------------------------------------------- /test/include/core/meta_grammar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/core/meta_grammar.cpp -------------------------------------------------------------------------------- /test/include/core/nothing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/core/nothing.cpp -------------------------------------------------------------------------------- /test/include/core/reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/core/reference.cpp -------------------------------------------------------------------------------- /test/include/core/terminal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/core/terminal.cpp -------------------------------------------------------------------------------- /test/include/core/value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/core/value.cpp -------------------------------------------------------------------------------- /test/include/function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/function.cpp -------------------------------------------------------------------------------- /test/include/function/function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/function/function.cpp -------------------------------------------------------------------------------- /test/include/function/lazy_headers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/function/lazy_headers.cpp -------------------------------------------------------------------------------- /test/include/fusion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/fusion.cpp -------------------------------------------------------------------------------- /test/include/fusion/at.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/fusion/at.cpp -------------------------------------------------------------------------------- /test/include/fusion_at.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/fusion_at.cpp -------------------------------------------------------------------------------- /test/include/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/object.cpp -------------------------------------------------------------------------------- /test/include/object/const_cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/object/const_cast.cpp -------------------------------------------------------------------------------- /test/include/object/construct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/object/construct.cpp -------------------------------------------------------------------------------- /test/include/object/delete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/object/delete.cpp -------------------------------------------------------------------------------- /test/include/object/dynamic_cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/object/dynamic_cast.cpp -------------------------------------------------------------------------------- /test/include/object/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/object/new.cpp -------------------------------------------------------------------------------- /test/include/object/reinterpret_cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/object/reinterpret_cast.cpp -------------------------------------------------------------------------------- /test/include/object/static_cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/object/static_cast.cpp -------------------------------------------------------------------------------- /test/include/operator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/operator.cpp -------------------------------------------------------------------------------- /test/include/operator/arithmetic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/operator/arithmetic.cpp -------------------------------------------------------------------------------- /test/include/operator/bitwise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/operator/bitwise.cpp -------------------------------------------------------------------------------- /test/include/operator/comparison.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/operator/comparison.cpp -------------------------------------------------------------------------------- /test/include/operator/if_else.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/operator/if_else.cpp -------------------------------------------------------------------------------- /test/include/operator/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/operator/io.cpp -------------------------------------------------------------------------------- /test/include/operator/logical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/operator/logical.cpp -------------------------------------------------------------------------------- /test/include/operator/member.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/operator/member.cpp -------------------------------------------------------------------------------- /test/include/operator/self.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/operator/self.cpp -------------------------------------------------------------------------------- /test/include/phoenix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/phoenix.cpp -------------------------------------------------------------------------------- /test/include/scope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/scope.cpp -------------------------------------------------------------------------------- /test/include/scope/dynamic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/scope/dynamic.cpp -------------------------------------------------------------------------------- /test/include/scope/lambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/scope/lambda.cpp -------------------------------------------------------------------------------- /test/include/scope/let.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/scope/let.cpp -------------------------------------------------------------------------------- /test/include/scope/local_variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/scope/local_variable.cpp -------------------------------------------------------------------------------- /test/include/scope/scoped_environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/scope/scoped_environment.cpp -------------------------------------------------------------------------------- /test/include/scope/this.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/scope/this.cpp -------------------------------------------------------------------------------- /test/include/spirit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/spirit.cpp -------------------------------------------------------------------------------- /test/include/spirit_no_specialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/spirit_no_specialize.cpp -------------------------------------------------------------------------------- /test/include/statement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/statement.cpp -------------------------------------------------------------------------------- /test/include/statement/do_while.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/statement/do_while.cpp -------------------------------------------------------------------------------- /test/include/statement/for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/statement/for.cpp -------------------------------------------------------------------------------- /test/include/statement/if.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/statement/if.cpp -------------------------------------------------------------------------------- /test/include/statement/sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/statement/sequence.cpp -------------------------------------------------------------------------------- /test/include/statement/switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/statement/switch.cpp -------------------------------------------------------------------------------- /test/include/statement/throw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/statement/throw.cpp -------------------------------------------------------------------------------- /test/include/statement/try_catch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/statement/try_catch.cpp -------------------------------------------------------------------------------- /test/include/statement/while.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/statement/while.cpp -------------------------------------------------------------------------------- /test/include/stl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/stl.cpp -------------------------------------------------------------------------------- /test/include/stl/algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/stl/algorithm.cpp -------------------------------------------------------------------------------- /test/include/stl/algorithm/iteration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/stl/algorithm/iteration.cpp -------------------------------------------------------------------------------- /test/include/stl/algorithm/querying.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/stl/algorithm/querying.cpp -------------------------------------------------------------------------------- /test/include/stl/algorithm/transformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/stl/algorithm/transformation.cpp -------------------------------------------------------------------------------- /test/include/stl/container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/stl/container.cpp -------------------------------------------------------------------------------- /test/include/stl/container/container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/stl/container/container.cpp -------------------------------------------------------------------------------- /test/include/support/iterate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/support/iterate.cpp -------------------------------------------------------------------------------- /test/include/support/preprocessor/round.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/support/preprocessor/round.cpp -------------------------------------------------------------------------------- /test/include/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/include/version.cpp -------------------------------------------------------------------------------- /test/object/cast_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/object/cast_tests.cpp -------------------------------------------------------------------------------- /test/object/new_delete_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/object/new_delete_tests.cpp -------------------------------------------------------------------------------- /test/operator/arithmetic_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/operator/arithmetic_tests.cpp -------------------------------------------------------------------------------- /test/operator/bitwise_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/operator/bitwise_tests.cpp -------------------------------------------------------------------------------- /test/operator/comparison_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/operator/comparison_tests.cpp -------------------------------------------------------------------------------- /test/operator/if_else_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/operator/if_else_tests.cpp -------------------------------------------------------------------------------- /test/operator/io_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/operator/io_tests.cpp -------------------------------------------------------------------------------- /test/operator/logical_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/operator/logical_tests.cpp -------------------------------------------------------------------------------- /test/operator/member.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/operator/member.cpp -------------------------------------------------------------------------------- /test/operator/misc_binary_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/operator/misc_binary_tests.cpp -------------------------------------------------------------------------------- /test/operator/self_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/operator/self_tests.cpp -------------------------------------------------------------------------------- /test/operator/unary_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/operator/unary_tests.cpp -------------------------------------------------------------------------------- /test/regression/actor_assignment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/regression/actor_assignment.cpp -------------------------------------------------------------------------------- /test/regression/bug4853.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/regression/bug4853.cpp -------------------------------------------------------------------------------- /test/regression/bug5626.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/regression/bug5626.cpp -------------------------------------------------------------------------------- /test/regression/bug5824.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/regression/bug5824.cpp -------------------------------------------------------------------------------- /test/regression/bug5875.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/regression/bug5875.cpp -------------------------------------------------------------------------------- /test/regression/bug5968.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/regression/bug5968.cpp -------------------------------------------------------------------------------- /test/regression/bug6040.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/regression/bug6040.cpp -------------------------------------------------------------------------------- /test/regression/bug6268.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/regression/bug6268.cpp -------------------------------------------------------------------------------- /test/regression/bug7165.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/regression/bug7165.cpp -------------------------------------------------------------------------------- /test/regression/bug7166.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/regression/bug7166.cpp -------------------------------------------------------------------------------- /test/regression/bug7624.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/regression/bug7624.cpp -------------------------------------------------------------------------------- /test/regression/from_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/regression/from_array.cpp -------------------------------------------------------------------------------- /test/scope/bug3289.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/bug3289.cpp -------------------------------------------------------------------------------- /test/scope/bug8298.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/bug8298.cpp -------------------------------------------------------------------------------- /test/scope/bug8298f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/bug8298f.cpp -------------------------------------------------------------------------------- /test/scope/bug_000008.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/bug_000008.cpp -------------------------------------------------------------------------------- /test/scope/dynamic_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/dynamic_tests.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests1.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests10.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests11.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests12.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests13.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests14.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests15.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests16.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests17.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests18.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests19.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests19.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests2.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests20.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests21.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests22.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests22.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests23.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests3.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests4.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests5.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests6.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests7.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests8.cpp -------------------------------------------------------------------------------- /test/scope/lambda_tests9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/lambda_tests9.cpp -------------------------------------------------------------------------------- /test/scope/let_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/let_tests.cpp -------------------------------------------------------------------------------- /test/scope/let_tests_113.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/let_tests_113.cpp -------------------------------------------------------------------------------- /test/scope/let_tests_113a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/let_tests_113a.cpp -------------------------------------------------------------------------------- /test/scope/let_tests_157.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/let_tests_157.cpp -------------------------------------------------------------------------------- /test/scope/let_tests_157a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/let_tests_157a.cpp -------------------------------------------------------------------------------- /test/scope/let_tests_rest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/let_tests_rest.cpp -------------------------------------------------------------------------------- /test/scope/more_lambda_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/more_lambda_tests.cpp -------------------------------------------------------------------------------- /test/scope/more_let_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/more_let_tests.cpp -------------------------------------------------------------------------------- /test/scope/more_let_tests1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/more_let_tests1.cpp -------------------------------------------------------------------------------- /test/scope/more_let_tests2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/more_let_tests2.cpp -------------------------------------------------------------------------------- /test/scope/more_let_tests2a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/more_let_tests2a.cpp -------------------------------------------------------------------------------- /test/scope/more_let_tests2b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/more_let_tests2b.cpp -------------------------------------------------------------------------------- /test/scope/this.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/scope/this.cpp -------------------------------------------------------------------------------- /test/statement/bug5715.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/statement/bug5715.cpp -------------------------------------------------------------------------------- /test/statement/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/statement/exceptions.cpp -------------------------------------------------------------------------------- /test/statement/if_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/statement/if_tests.cpp -------------------------------------------------------------------------------- /test/statement/loops_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/statement/loops_tests.cpp -------------------------------------------------------------------------------- /test/statement/switch_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/statement/switch_tests.cpp -------------------------------------------------------------------------------- /test/stdlib/cmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/stdlib/cmath.cpp -------------------------------------------------------------------------------- /test/tuple/tuple_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/phoenix/HEAD/test/tuple/tuple_test.cpp --------------------------------------------------------------------------------