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

Function not_between_op

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

Source from the content-addressed store, hash-verified

2125@comparison_op
2126@_operator_fn
2127def not_between_op(a: Any, b: Any, c: Any, symmetric: bool = False) -> Any:
2128 return ~a.between(b, c, symmetric=symmetric)
2129
2130
2131# 1.4 deprecated; see #5435

Callers

nothing calls this directly

Calls 1

betweenMethod · 0.45

Tested by

no test coverage detected