Function any_ends_with_ignore_ascii_case
pub fn any_ends_with_ignore_ascii_case<T, I>(s: T, sub_iter: I) -> boolExpand description
Returns true if s ends with any suffix from sub_iter,
using ASCII case insensitive comparison.
If any suffix is empty, this returns true.
Iteration order does not matter for the result, only for the amount of work performed.