MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / not_between_op

Function not_between_op

lib/sqlalchemy/sql/operators.py:2294–2295  ·  view source on GitHub ↗
(a: Any, b: Any, c: Any, symmetric: bool = False)

Source from the content-addressed store, hash-verified

2292@comparison_op
2293@_operator_fn
2294def not_between_op(a: Any, b: Any, c: Any, symmetric: bool = False) -> Any:
2295 return ~a.between(b, c, symmetric=symmetric)
2296
2297
2298# 1.4 deprecated; see #5435

Callers

nothing calls this directly

Calls 1

betweenMethod · 0.45

Tested by

no test coverage detected