MCPcopy Create free account
hub / github.com/KTH-RPL/dufomap / get_impl

Function get_impl

src/indicators.hpp:1140–1144  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1138
1139template <ProgressBarOption Id, typename Default, typename T, typename... Args>
1140auto get_impl(Default && /*def*/, T &&first, Args &&... /*tail*/) ->
1141 typename std::enable_if<(std::decay<T>::type::id == Id),
1142 decltype(std::forward<T>(first))>::type {
1143 return std::forward<T>(first);
1144}
1145
1146template <ProgressBarOption Id, typename Default, typename T, typename... Args>
1147auto get_impl(Default &&def, T && /*first*/, Args &&... tail) ->

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected