(
a: Any, b: Any, escape: Optional[str] = None, autoescape: bool = False
)
| 2485 | @comparison_op |
| 2486 | @_operator_fn |
| 2487 | def icontains_op( |
| 2488 | a: Any, b: Any, escape: Optional[str] = None, autoescape: bool = False |
| 2489 | ) -> Any: |
| 2490 | return _escaped_like_impl(a.icontains, b, escape, autoescape) |
| 2491 | |
| 2492 | |
| 2493 | @comparison_op |
nothing calls this directly
no test coverage detected