MCPcopy Create free account
hub / github.com/BehaviorTree/BehaviorTree.CPP / invoke

Function invoke

include/behaviortree_cpp/contrib/expected.hpp:1142–1147  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1140 )
1141>
1142nsel_constexpr auto invoke( F && f, Args && ... args )
1143 noexcept( noexcept( invoke_member_function_impl( std::forward< F >( f ), std::forward< Args >( args ) ... ) ) )
1144 -> decltype( invoke_member_function_impl( std::forward< F >( f ), std::forward< Args >( args ) ... ) )
1145{
1146 return invoke_member_function_impl( std::forward< F >( f ), std::forward< Args >( args ) ... );
1147}
1148
1149template< typename F, typename... Args
1150 nsel_REQUIRES_T(

Calls 2

Tested by

no test coverage detected