MCPcopy Create free account
hub / github.com/apache/fory / _encode_lower_special

Method _encode_lower_special

python/pyfory/meta/metastring.py:443–454  ·  view source on GitHub ↗

Encodes the input string using LOWER_SPECIAL encoding. Args: input_string (str): The string to encode. Returns: bytes: The encoded data.

(self, input_string: str)

Source from the content-addressed store, hash-verified

441 )
442
443 def _encode_lower_special(self, input_string: str) -> bytes:
444 """
445 Encodes the input string using LOWER_SPECIAL encoding.
446
447 Args:
448 input_string (str): The string to encode.
449
450 Returns:
451 bytes: The encoded data.
452 """
453 chars = list(input_string)
454 return self._encode_generic(chars, 5)
455
456 def _encode_lower_upper_digit_special(self, input_string: str) -> bytes:
457 """

Callers 2

encode_with_encodingMethod · 0.95

Calls 2

_encode_genericMethod · 0.95
listFunction · 0.50

Tested by 1