MCPcopy Create free account
hub / github.com/NativeScript/android / count

Class count

test-app/runtime/src/main/cpp/include/v8-fast-api-calls.h:577–577  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

575// Helper to count the number of occurances of `T` in `List`
576template <typename T, typename... List>
577struct count : std::integral_constant<int, 0> {};
578template <typename T, typename... Args>
579struct count<T, T, Args...>
580 : std::integral_constant<std::size_t, 1 + count<T, Args...>::value> {};

Callers 1

containsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected