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