将当前对象与 other 融合。
other
使用结果转换器进行编码等同于先使用 this 编码,然后再使用 other 编码。
this
Converter<S, TT> fuse<TT>(Converter<T, TT> other) { return _FusedConverter<S, T, TT>(this, other); }