Module
Module documentation.
moduleencoding.xml
Classes
Classes and inheritance.
Functions
Free functions and class methods.
functionencoding.xml::escape
Signature
func escape(s: String) -> Stringfunc escape(s: String) -> String {
return encoding.escape(s);
}@briefProvides the system library operation `escape`.
@detailsExecutes the `escape` 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 `String`.
functionencoding.xml::unescape
Signature
func unescape(s: String) -> Stringfunc unescape(s: String) -> String {
return encoding.unescape(s);
}@briefProvides the system library operation `unescape`.
@detailsExecutes the `unescape` 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 `String`.
functionencoding.xml::marshal_map_str_str
Signature
func marshal_map_str_str(m: collections.Map<String, String>) -> Stringfunc marshal_map_str_str(m: collections.Map<String, String>) -> String {
return encoding.marshal_map_str_str(m);
}@briefProvides the system library operation `marshal_map_str_str`.
@detailsExecutes the `marshal_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.xml::unmarshal_map_str_str
Signature
func unmarshal_map_str_str(s: String) -> collections.Map<String, String>func unmarshal_map_str_str(s: String) -> collections.Map<String, String> {
return encoding.unmarshal_map_str_str(s);
}@briefProvides the system library operation `unmarshal_map_str_str`.
@detailsExecutes the `unmarshal_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).