Sha256: 078b19edf7e1c51af5ef17a90db241af76707b6a77ed5123c578d6455b796c4c
Contents?: true
Size: 478 Bytes
Versions: 6
Compression:
Stored size: 478 Bytes
Contents
#ifndef SASS_BASE64VLQ_H #define SASS_BASE64VLQ_H #include <string> namespace Sass { class Base64VLQ { public: sass::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
6 entries across 5 versions & 4 rubygems