MCPcopy Index your code
hub / github.com/faust-streaming/faust / NeMethod

Function NeMethod

faust/utils/codegen.py:168–170  ·  view source on GitHub ↗

Generate ``__ne__`` method.

(fields: List[str], **kwargs: Any)

Source from the content-addressed store, hash-verified

166
167
168def NeMethod(fields: List[str], **kwargs: Any) -> Callable[[], None]:
169 """Generate ``__ne__`` method."""
170 return CompareMethod(name="__ne__", op="!=", fields=fields, **kwargs)
171
172
173def GeMethod(fields: List[str], **kwargs: Any) -> Callable[[], None]:

Callers

nothing calls this directly

Calls 1

CompareMethodFunction · 0.85

Tested by

no test coverage detected