| 2227 | template <typename Container, typename ContainerAlt, |
| 2228 | typename ContainerOut = internal::remove_const_and_ref_t<Container>> |
| 2229 | ContainerOut instead_of_if_empty(const ContainerAlt& alt, Container&& xs) |
| 2230 | { |
| 2231 | return instead_of_if( |
| 2232 | is_empty<internal::remove_const_and_ref_t<Container>>, |
| 2233 | alt, std::forward<Container>(xs)); |
| 2234 | } |
| 2235 | |
| 2236 | } // namespace fplus |
no test coverage detected