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

Function GeMethod

faust/utils/codegen.py:173–175  ·  view source on GitHub ↗

Generate ``__ge__`` method.

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

Source from the content-addressed store, hash-verified

171
172
173def GeMethod(fields: List[str], **kwargs: Any) -> Callable[[], None]:
174 """Generate ``__ge__`` method."""
175 return CompareMethod(name="__ge__", op=">=", fields=fields, **kwargs)
176
177
178def GtMethod(fields: List[str], **kwargs: Any) -> Callable[[], None]:

Callers

nothing calls this directly

Calls 1

CompareMethodFunction · 0.85

Tested by

no test coverage detected