getBase10Codec function

VariableSizeCodec<String, String> getBase10Codec()

Returns a codec for encoding and decoding base-10 strings.

This codec serializes strings using a base-10 encoding scheme. The output consists of bytes representing the numerical values of the input string.

Implementation

VariableSizeCodec<String, String> getBase10Codec() => getBaseXCodec(_alphabet);