将此流适配为 Stream<R>。
Stream<R>
此流被包装为 Stream<R>,在运行时会检查每个由该流发出的数据事件是否也是 R 的实例。
R
Stream<R> cast<R>() => Stream.castFrom<T, R>(this);