Function countElementsWithValue [src]
Prototype
pub fn countElementsWithValue(vec: anytype, value: std.meta.Child(@TypeOf(vec))) VectorCount(@TypeOf(vec))
Parameters
value: std.meta.Child(@TypeOf(vec))
Source
pub fn countElementsWithValue(vec: anytype, value: std.meta.Child(@TypeOf(vec))) VectorCount(@TypeOf(vec)) {
const V = @TypeOf(vec);
return countTrues(vec == @as(V, @splat(value)));
}