@@ -192,28 +192,28 @@ public fun Buffer.storeLongAt(offset: Int, value: Long, byteOrder: ByteOrder) {
192
192
public expect fun Buffer.storeLongAt (offset : Long , value : Long )
193
193
194
194
/* *
195
- * Read short signed 64-bit integer in the network byte order (Big Endian).
195
+ * Read short unsigned 64-bit integer in the network byte order (Big Endian).
196
196
* May throw [IndexOutOfBoundsException] if given [offset] is negative or greater than buffer size.
197
197
*/
198
198
@ExperimentalUnsignedTypes
199
199
public inline fun Buffer.loadULongAt (offset : Int ): ULong = loadLongAt(offset).toULong()
200
200
201
201
/* *
202
- * Read short signed 64-bit integer in the network byte order (Big Endian).
202
+ * Read short unsigned 64-bit integer in the network byte order (Big Endian).
203
203
* May throw [IndexOutOfBoundsException] if given [offset] is negative or greater than buffer size.
204
204
*/
205
205
@ExperimentalUnsignedTypes
206
206
public inline fun Buffer.loadULongAt (offset : Long ): ULong = loadLongAt(offset).toULong()
207
207
208
208
/* *
209
- * Write short signed 64-bit integer in the network byte order (Big Endian).
209
+ * Write short unsigned 64-bit integer in the network byte order (Big Endian).
210
210
* May throw [IndexOutOfBoundsException] if given [offset] is negative or greater than buffer size.
211
211
*/
212
212
@ExperimentalUnsignedTypes
213
213
public inline fun Buffer.storeULongAt (offset : Int , value : ULong ): Unit = storeLongAt(offset, value.toLong())
214
214
215
215
/* *
216
- * Write short signed 64-bit integer in the network byte order (Big Endian).
216
+ * Write short unsigned 64-bit integer in the network byte order (Big Endian).
217
217
* May throw [IndexOutOfBoundsException] if given [offset] is negative or greater than buffer size.
218
218
*/
219
219
@ExperimentalUnsignedTypes
0 commit comments