mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 17:41:59 +00:00
4a24d4f3ad
* Initial commit if EN docs * Part of EN documentation * Full queries section * External data * Table engines * System tables * Table functions * Formats * Data types * Operators * Functions * Dictionaries * Settings * Configuration files * Access rights * Quotas * Fixed few formatting errors * Fixed few formatting errors * Fixed few formatting errors * FIX: "WARNING: Title underline too short." during build RU docs. * FIX: "WARNING: Title underline too short." during build RU docs.
25 lines
798 B
ReStructuredText
25 lines
798 B
ReStructuredText
Битовые функции
|
||
---------------
|
||
|
||
Битовые функции работают для любой пары типов из UInt8, UInt16, UInt32, UInt64, Int8, Int16, Int32, Int64, Float32, Float64.
|
||
|
||
``Тип результата`` - целое число, битность которого равна максимальной битности аргументов. Если хотя бы один аргумент знаковый, то результат - знаковое число. Если аргумент - число с плавающей запятой - оно приводится к Int64.
|
||
|
||
bitAnd(a, b)
|
||
~~~~~~~~~~~~
|
||
|
||
bitOr(a, b)
|
||
~~~~~~~~~~~
|
||
|
||
bitXor(a, b)
|
||
~~~~~~~~~~~~
|
||
|
||
bitNot(a)
|
||
~~~~~~~~~
|
||
|
||
bitShiftLeft(a, b)
|
||
~~~~~~~~~~~~~~~~~~
|
||
|
||
bitShiftRight(a, b)
|
||
~~~~~~~~~~~~~~~~~~~
|