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

Function startswith_op

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

Source from the content-addressed store, hash-verified

2369@comparison_op
2370@_operator_fn
2371def startswith_op(
2372 a: Any, b: Any, escape: Optional[str] = None, autoescape: bool = False
2373) -> Any:
2374 return _escaped_like_impl(a.startswith, b, escape, autoescape)
2375
2376
2377@comparison_op

Callers

nothing calls this directly

Calls 1

_escaped_like_implFunction · 0.85

Tested by

no test coverage detected