Function startsWith [src]

Prototype

pub fn startsWith(comptime T: type, haystack: []const T, needle: []const T) bool

Parameters

T: typehaystack: []const Tneedle: []const T

Example

test startsWith { try testing.expect(startsWith(u8, "Bob", "Bo")); try testing.expect(!startsWith(u8, "Needle in haystack", "haystack")); }

Source

pub fn startsWith(comptime T: type, haystack: []const T, needle: []const T) bool { return if (needle.len > haystack.len) false else eql(T, haystack[0..needle.len], needle); }