struct rgpot::Fnv1aΒΆ

struct Fnv1a {
    // fields
 
    static uint64_t kOffset = 0xcbf29ce484222325ULL;
    static uint64_t kPrime = 0x100000001b3ULL;
    uint64_t h = kOffset;
 
    // methods
 
    void bytes(const void* data, std::size_t n);
    void f64(double v);
    void i64(int64_t v);
    void u64(uint64_t v);
    void b8(bool v);
    void str(std::string_view s);
};