(self, **kwargs)
| 171 | self._validate_none_fields() |
| 172 | |
| 173 | def replace(self, **kwargs): |
| 174 | output = self._replace(**kwargs) |
| 175 | output._validate_none_fields() # pylint: disable=protected-access |
| 176 | return output |
| 177 | |
| 178 | def map(self, field_fn, fields=GRAPH_FEATURE_FIELDS): |
| 179 | """Applies `field_fn` to the fields `fields` of the instance. |