Skip to content

Instantly share code, notes, and snippets.

@spiegela
Created March 27, 2014 02:30
Show Gist options
  • Save spiegela/9798815 to your computer and use it in GitHub Desktop.
Save spiegela/9798815 to your computer and use it in GitHub Desktop.
-spec encode(integer()) -> [1..255].
%% Wrapper for calling encode/2
encode(0) ->
% TODO: maybe refactor encoding to handle "0" case in the recursive function
"A";
encode(X) when X > 54 ->
"E";
encode(Value) ->
encode(to_vlq_signed_value(Value), []).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment