Returns: A unique identifier that is used internally to map @string to a group of custom splits.
(string: str)
| 355 | |
| 356 | @staticmethod |
| 357 | def _get_key(string: str) -> CustomSplitMapKey: |
| 358 | """ |
| 359 | Returns: |
| 360 | A unique identifier that is used internally to map @string to a |
| 361 | group of custom splits. |
| 362 | """ |
| 363 | return (id(string), string) |
| 364 | |
| 365 | def add_custom_splits( |
| 366 | self, string: str, custom_splits: Iterable[CustomSplit] |
no outgoing calls
no test coverage detected