Loading [MathJax]/extensions/tex2jax.js
kumi v3.1.0
Exquisite Epidote
 
All Classes Namespaces Functions Variables Friends Modules Pages Concepts
Loading...
Searching...
No Matches

◆ count()

template<typename T >
KUMI_TRIVIAL_NODISCARD constexpr std::size_t kumi::count ( T const ts)
constexprnoexcept

Counts the number of elements of t not equivalent to false.

Parameters
tsValue to process
Returns
Number of elements not equivalent to false.

Example:

#include <kumi/tuple.hpp>
#include <iostream>
#include <type_traits>
int main()
{
auto t = kumi::tuple{1, 0, 2., nullptr, 3.f, false, 'z'};
std::cout << std::boolalpha << kumi::count(t ) << "\n";
std::cout << std::boolalpha << kumi::count(7.89) << "\n";
}
KUMI_TRIVIAL_NODISCARD constexpr std::size_t count(T const &ts) noexcept
Counts the number of elements of t not equivalent to false.
Definition predicates.hpp:154
constexpr auto from_tuple(tuple< Ts... > const &t)
Converts a kumi::tuple to an instance of an arbitrary type.
Definition convert.hpp:59
Fixed-size collection of heterogeneous values.
Definition tuple.hpp:35