Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Algo
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Algo/Count.h |
| Include | #include "Algo/Count.h" |
namespace Algo
{
template<typename InT, typename ValueT>
SIZE_T Algo::Count
(
const InT & Input,
const ValueT & InValue
)
}
Remarks
Counts elements of a range that equal the supplied value
Parameters
| Name | Description |
|---|---|
| Input | Any iterable type |
| InValue | Value to compare against |