Garden 🌻

String::starts_with

Does this string start with s?

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