Remove "unsigned" from docs now that we support all ints.

This commit is contained in:
Priyansh Agrawal 2023-10-09 21:16:46 +00:00
parent 63b0df9f1d
commit 2e4709fd10

View File

@ -714,7 +714,7 @@ Result:
## byteSwap
Accepts an unsigned integer `operand` and returns the integer which is obtained by swapping the **endianness** of `operand` i.e. reversing the bytes of the `operand`.
Accepts an integer `operand` and returns the integer which is obtained by swapping the **endianness** of `operand` i.e. reversing the bytes of the `operand`.
Currently, this is supported for up to 64-bit (signed and unsigned) integers.