MCPcopy Create free account
hub / github.com/fmtlib/fmt / select

Function select

include/fmt/format.h:1687–1689  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1685
1686template <bool C, typename T, typename F, FMT_ENABLE_IF(C)>
1687auto select(T true_value, F) -> T {
1688 return true_value;
1689}
1690template <bool C, typename T, typename F, FMT_ENABLE_IF(!C)>
1691auto select(T, F false_value) -> F {
1692 return false_value;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected