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

Function not_istartswith_op

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

Source from the content-addressed store, hash-verified

2405@comparison_op
2406@_operator_fn
2407def not_istartswith_op(
2408 a: Any, b: Any, escape: Optional[str] = None, autoescape: bool = False
2409) -> Any:
2410 return ~_escaped_like_impl(a.istartswith, b, escape, autoescape)
2411
2412
2413@comparison_op

Callers

nothing calls this directly

Calls 1

_escaped_like_implFunction · 0.85

Tested by

no test coverage detected