Small edits to bit-functions.md

This commit is contained in:
Shaun Struwig 2024-05-23 17:14:56 +02:00 committed by GitHub
parent 9481f2f325
commit 9cfd2322d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -186,9 +186,9 @@ SELECT bitTest(number, index)
- `number` Integer number.
- `index` Position of bit.
**Returned values**
**Returned value**
Returns a value of bit at specified position. [UInt8](../data-types/int-uint.md).
- Value of the bit at the specified position. [UInt8](../data-types/int-uint.md).
**Example**
@ -249,9 +249,9 @@ SELECT bitTestAll(number, index1, index2, index3, index4, ...)
- `number` Integer number.
- `index1`, `index2`, `index3`, `index4` Positions of bit. For example, for set of positions (`index1`, `index2`, `index3`, `index4`) is true if and only if all of its positions are true (`index1` ⋀ `index2`, ⋀ `index3``index4`).
**Returned values**
**Returned value**
Returns result of logical conjuction. [UInt8](../data-types/int-uint.md).
- Result of the logical conjuction. [UInt8](../data-types/int-uint.md).
**Example**
@ -312,9 +312,9 @@ SELECT bitTestAny(number, index1, index2, index3, index4, ...)
- `number` Integer number.
- `index1`, `index2`, `index3`, `index4` Positions of bit.
**Returned values**
**Returned value**
Returns result of logical disjunction. [UInt8](../data-types/int-uint.md).
- Result of the logical disjunction. [UInt8](../data-types/int-uint.md).
**Example**