JanetDocsPlaygroundI'm feeling luckyGitHub sign in

bxor



    function

    (bxor & xs)

    Returns the bit-wise xor of all values in xs. Each in xs must be an 
    integer.


2 examplesSign in to add an example
Loading...
(bxor 2r011 2r110)
# => 5
sogaiuPlayground
(bxor 3 6)  # => 5

#     011  (3)
# xor 110  (6)
# -------
#     101  (5)
cellularmitosisPlayground