Sha256: 360c1cd5412aa8862c4c287f5bb87d3ff34e871b57d59664c33daba15891f74c
Contents?: true
Size: 493 Bytes
Versions: 17
Compression:
Stored size: 493 Bytes
Contents
#ifndef SASS_BASE64VLQ_H #define SASS_BASE64VLQ_H #include <string> namespace Sass { using std::string; class Base64VLQ { public: string encode(const int number) const; private: char base64_encode(const int number) const; int to_vlq_signed(const int number) const; static const char* CHARACTERS; static const int VLQ_BASE_SHIFT; static const int VLQ_BASE; static const int VLQ_BASE_MASK; static const int VLQ_CONTINUATION_BIT; }; } #endif
Version data entries
17 entries across 17 versions & 2 rubygems