github.com/15mga/kiwi@v0.0.2-0.20240324021231-b95d5c3ac751/worker/fnv_test.go (about)

     1  package worker
     2  
     3  import "testing"
     4  
     5  func TestFnv(t *testing.T) {
     6  	v := FnvInt64(1000) & 16
     7  	t.Log(v)
     8  	v = FnvStr("scene") & 16
     9  	t.Log(v)
    10  }