String::starts_with
Does this string start with s?
s
"foobar".starts_with("foo") //-> True "foobar".starts_with("abc") //-> False
Source Codepublic method starts_with(this: String, s: String): Bool { __BUILTIN_IMPLEMENTATION }
public method starts_with(this: String, s: String): Bool { __BUILTIN_IMPLEMENTATION }