EgretDoc
Back to Home
Location:system/encoding.gob

Module

Module documentation.

moduleencoding.gob

Classes

Classes and inheritance.

Functions

Free functions and class methods.

functionencoding.gob::encode_map_str_str
Signaturefunc encode_map_str_str(m: collections.Map<String, String>) -> String
func encode_map_str_str(m: collections.Map<String, String>) -> String {
    return encoding.encode_map_str_str(m);
}
@briefEncodes input data with `encode_map_str_str`.
@detailsExecutes the `encode_map_str_str` system-library API. The documented parameters define the accepted inputs, ownership requirements, range limits, and timeout behavior for this call. Callers must check returned `ErrCode` values or boolean status values before using the result.
@param
  • mMap, matcher, message, or numeric value consumed by this operation.
@returnReturns the operation result as `String`.
functionencoding.gob::decode_map_str_str
Signaturefunc decode_map_str_str(s: String) -> collections.Map<String, String>
func decode_map_str_str(s: String) -> collections.Map<String, String> {
    return encoding.decode_map_str_str(s);
}
@briefDecodes input data with `decode_map_str_str`.
@detailsExecutes the `decode_map_str_str` system-library API. The documented parameters define the accepted inputs, ownership requirements, range limits, and timeout behavior for this call. Callers must check returned `ErrCode` values or boolean status values before using the result.
@param
  • sInput string.
@returnReturns the operation result as `collections.Map<String, String>`.

Variables

Class fields (var).