We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdfa9ae commit 88eca07Copy full SHA for 88eca07
1 file changed
Sources/BitWriter.swift
@@ -25,10 +25,6 @@ public protocol BitWriter {
25
26
/// Writes `number`, using and advancing by `bitsCount` BIT positions.
27
func write(number: Int, bitsCount: Int)
28
-
29
- /// because you cant convert a UInt64 into an Int without potential for overflowing it, we need an unsingned variant of `write`
30
- /// Writes unsigned `number`, using and advancing by `bitsCount` BIT positions.
31
- func write(unsignedNumber: UInt, bitsCount: Int)
32
33
/// Writes `byte`, advancing by one BYTE position.
34
func append(byte: UInt8)
@@ -49,4 +45,4 @@ extension BitWriter {
49
45
}
50
46
51
47
52
-}
48
+}
0 commit comments