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

Function iendswith_op

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

Source from the content-addressed store, hash-verified

2441@comparison_op
2442@_operator_fn
2443def iendswith_op(
2444 a: Any, b: Any, escape: Optional[str] = None, autoescape: bool = False
2445) -> Any:
2446 return _escaped_like_impl(a.iendswith, b, escape, autoescape)
2447
2448
2449@comparison_op

Callers

nothing calls this directly

Calls 1

_escaped_like_implFunction · 0.85

Tested by

no test coverage detected