Function uint32 [src]

DEPRECATED: use std.hash.int() Source: https://github.com/skeeto/hash-prospector

Prototype

pub fn uint32(input: u32) u32

Parameters

input: u32

Source

pub fn uint32(input: u32) u32 { var x: u32 = input; x = (x ^ (x >> 17)) *% 0xed5ad4bb; x = (x ^ (x >> 11)) *% 0xac4c1b51; x = (x ^ (x >> 15)) *% 0x31848bab; x = x ^ (x >> 14); return x; }