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