Is it possible to breakdown a c++ statement as shown?
The statement is taken from a source file that is developed using vector autosar adaptive davinci APIs/functions etc. adaptive::communication::ServiceHandle find_a_service = services::nameofservice::proxy::serviceproxy::StartSearchService( [this](const adaptive::communication::ContainerServiceHandles<services::nameofservice::proxy::serviceproxy::HandleTypes>& handles) { SearchServiceHandler(handles); }, adaptive::core::InstanceSpec{ kInstance }); I have renamed/obscured names but kept the format intact in the source code. Can anyone help in breaking down this complex statement to several… Read More Is it possible to breakdown a c++ statement as shown?