hash

Get the FNV-1a hash of the string

  1. uint hash(string s)
  2. uint hash(string s)
    pure nothrow @safe
    uint
    hash
    (
    string s
    )

Parameters

s string

The string that should be hashed

Examples

println("Hello, World!".hash);

Meta