Function firstIndexOfValue [src]

Prototype

pub fn firstIndexOfValue(vec: anytype, value: std.meta.Child(@TypeOf(vec))) ?VectorIndex(@TypeOf(vec))

Parameters

value: std.meta.Child(@TypeOf(vec))

Source

pub fn firstIndexOfValue(vec: anytype, value: std.meta.Child(@TypeOf(vec))) ?VectorIndex(@TypeOf(vec)) { const V = @TypeOf(vec); return firstTrue(vec == @as(V, @splat(value))); }