You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
iex># Bitstring generators are also supported and are very usefuliex># when you need to organize bitstring streams:iex>pixels=<<213,45,132,64,76,32,76,0,0,234,32,15>>iex>result=stream<<r::8,g::8,b::8<-pixels>>,do: {r,g,b}iex>Enum.to_list(result)[{213,45,132},{64,76,32},{76,0,0},{234,32,15}]
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: