I try to divide my List into chunks of 3 and discard the rest, for example
my_list=[63, 73, 197, 81, 45, 44, 148, 121, 141, 79, 181, 156, 183, 114, 52, 69]
my_list |> Enum.chunk_every(3, 3, :discard)
I expected to return:
Expected: [[63, 73, 197], [148, 121, 141], [79, 181, 156], [183, 114, 52]]
Actual result: [[63, 73, 197], 'Q-,', [148, 121, 141], [79, 181, 156], [183, 114, 52]]
Where does the 'Q-,' Element come from?