fuse<TT> 方法

Converter<S, TT> fuse<TT>(
  1. Converter<T, TT> other
)

将当前对象与 other 融合。

使用结果转换器进行编码等同于先使用 this 编码,然后再使用 other 编码。

实现

Converter<S, TT> fuse<TT>(Converter<T, TT> other) {
  return _FusedConverter<S, T, TT>(this, other);
}