Garden 🌻

String::ends_with

Does this string end with s?

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