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