MCPcopy
hub / github.com/django/django / apply_bilateral_transforms

Method apply_bilateral_transforms

django/db/models/lookups.py:52–55  ·  view source on GitHub ↗
(self, value)

Source from the content-addressed store, hash-verified

50 self.bilateral_transforms = bilateral_transforms
51
52 def apply_bilateral_transforms(self, value):
53 for transform in self.bilateral_transforms:
54 value = transform(value)
55 return value
56
57 def __repr__(self):
58 return f"{self.__class__.__name__}({self.lhs!r}, {self.rhs!r})"

Callers 2

batch_process_rhsMethod · 0.95
process_rhsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected