File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import scala.scalajs.js.typedarray.TypedArrayBuffer
26
26
import scala .scalajs .js .typedarray .Uint8Array
27
27
import scala .scalajs .js .typedarray .TypedArrayBufferOps ._
28
28
29
- trait ChunkRuntimePlatform [+ O ] { self : Chunk [O ] =>
29
+ private [fs2] trait ChunkRuntimePlatform [+ O ] { self : Chunk [O ] =>
30
30
31
31
def toJSArrayBuffer [B >: O ](implicit ev : B =:= Byte ): ArrayBuffer = {
32
32
val bb = toByteBuffer[B ]
@@ -46,7 +46,7 @@ trait ChunkRuntimePlatform[+O] { self: Chunk[O] =>
46
46
47
47
}
48
48
49
- trait ChunkCompanionRuntimePlatform { self : Chunk .type =>
49
+ private [fs2] trait ChunkCompanionRuntimePlatform { self : Chunk .type =>
50
50
51
51
def jsArrayBuffer (buffer : ArrayBuffer ): Chunk [Byte ] =
52
52
byteBuffer(TypedArrayBuffer .wrap(buffer))
Original file line number Diff line number Diff line change 21
21
22
22
package fs2
23
23
24
- trait ChunkRuntimePlatform [+ O ]
24
+ private [fs2] trait ChunkRuntimePlatform [+ O ]
25
25
26
- trait ChunkCompanionRuntimePlatform
26
+ private [fs2] trait ChunkCompanionRuntimePlatform
You can’t perform that action at this time.
0 commit comments