QRCodeEx.Encode.bits

You're seeing just the function bits, go back to QRCodeEx.Encode module for more information.

Specs

bits(bitstring()) :: [0 | 1]

Returns bits for any binary data.

Example:

iex> QRCodeEx.Encode.bits(<<123, 4>>)
[0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0]