MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / icontains_op

Function icontains_op

lib/sqlalchemy/sql/operators.py:2487–2490  ·  view source on GitHub ↗
(
    a: Any, b: Any, escape: Optional[str] = None, autoescape: bool = False
)

Source from the content-addressed store, hash-verified

2485@comparison_op
2486@_operator_fn
2487def 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

Callers

nothing calls this directly

Calls 1

_escaped_like_implFunction · 0.85

Tested by

no test coverage detected