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