Garden 🌻

String::ends_with()

Does this string end with s?

Example
"foobar".ends_with("bar") //-> True
"foobar".ends_with("abc") //-> False
Source Code
public method ends_with(this: String, s: String): Bool {
  __BUILT_IN_IMPLEMENTATION
}