Checks if any item in the list satisfies the provided test.
@override bool any(bool Function(T) test) => _items.any(test);