Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
tomiwu authored Aug 30, 2023
2 parents 68299d2 + 73429d2 commit bc75cb6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
6 changes: 2 additions & 4 deletions core/shared/src/main/scala/fs2/Chunk.scala
Original file line number Diff line number Diff line change
Expand Up @@ -324,8 +324,7 @@ abstract class Chunk[+O] extends Serializable with ChunkPlatform[O] with ChunkRu
* @note that even "read-only" interaction with a `ByteBuffer` may increment its `position`,
* so this method should be considered as unsafely allocating mutable state.
*/
@nowarn212("cat=unused")
def toByteBuffer[B >: O](implicit ev: B =:= Byte): JByteBuffer = {
def toByteBuffer[B >: O](implicit @nowarn212("cat=unused") ev: B =:= Byte): JByteBuffer = {
val slice = this.asInstanceOf[Chunk[Byte]].toArraySlice
JByteBuffer.wrap(slice.values, slice.offset, slice.length)
}
Expand All @@ -334,8 +333,7 @@ abstract class Chunk[+O] extends Serializable with ChunkPlatform[O] with ChunkRu
* @note that even "read-only" interaction with a `CharBuffer` may increment its position,
* so this method should be considered as unsafely allocating mutable state.
*/
@nowarn212("cat=unused")
def toCharBuffer[C >: O](implicit ev: C =:= Char): JCharBuffer = {
def toCharBuffer[C >: O](implicit @nowarn212("cat=unused") ev: C =:= Char): JCharBuffer = {
val slice = this.asInstanceOf[Chunk[Char]].toArraySlice
JCharBuffer.wrap(slice.values, slice.offset, slice.length)
}
Expand Down
12 changes: 6 additions & 6 deletions core/shared/src/main/scala/fs2/Stream.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2509,9 +2509,8 @@ final class Stream[+F[_], +O] private[fs2] (private[fs2] val underlying: Pull[F,
* res0: List[Int] = List(1, 2, -1)
* }}}
*/
@nowarn212("cat=unused")
def rethrow[F2[x] >: F[x], O2](implicit
ev: O <:< Either[Throwable, O2],
@nowarn212("cat=unused") ev: O <:< Either[Throwable, O2],
rt: RaiseThrowable[F2]
): Stream[F2, O2] =
this.asInstanceOf[Stream[F, Either[Throwable, O2]]].chunks.flatMap { c =>
Expand Down Expand Up @@ -4122,11 +4121,13 @@ object Stream extends StreamLowPriority {
* If either of `left` or `right` fails, then resulting stream will fail.
* If either `halts` the evaluation will halt too.
*/
@nowarn212("cat=unused")
def observeEither[L, R](
left: Pipe[F, L, Nothing],
right: Pipe[F, R, Nothing]
)(implicit F: Concurrent[F], ev: O <:< Either[L, R]): Stream[F, Either[L, R]] = {
)(implicit
F: Concurrent[F],
@nowarn212("cat=unused") ev: O <:< Either[L, R]
): Stream[F, Either[L, R]] = {
val src = self.asInstanceOf[Stream[F, Either[L, R]]]
src
.observe(_.collect { case Left(l) => l }.through(left))
Expand Down Expand Up @@ -5045,8 +5046,7 @@ object Stream extends StreamLowPriority {
* res0: String = Hello world!
* }}}
*/
@nowarn212("cat=unused")
def string(implicit ev: O <:< String): G[String] =
def string(implicit @nowarn212("cat=unused") ev: O <:< String): G[String] =
new Stream(underlying).asInstanceOf[Stream[F, String]].compile.to(Collector.string)

/** Compiles this stream into a value of the target effect type `G` by collecting
Expand Down

0 comments on commit bc75cb6

Please sign in to comment.