@@ -5,14 +5,14 @@ A set of commonly used hash functions.
5
5
## List of functions
6
6
7
7
* ` Digest::Crc32c(String{Flags::AutoMap}) -> Uint32 `
8
- * ` Digest::Crc64(String{Flags::AutoMap}) -> Uint64 `
9
- * ` Digest::Fnv32(String{Flags::AutoMap}) -> Uint32 `
10
- * ` Digest::Fnv64(String{Flags::AutoMap}) -> Uint64 `
11
- * ` Digest::MurMurHash(String{Flags:AutoMap}) -> Uint64 `
12
- * ` Digest::MurMurHash32(String{Flags:AutoMap}) -> Uint32 `
13
- * ` Digest::MurMurHash2A(String{Flags:AutoMap}) -> Uint64 `
14
- * ` Digest::MurMurHash2A32(String{Flags:AutoMap}) -> Uint32 `
15
- * ` Digest::CityHash(String{Flags:AutoMap}, [Uint64?]) -> Uint64 ` : The second optional argument is seed
8
+ * ` Digest::Crc64(String{Flags::AutoMap}, [Init:Uint64?] ) -> Uint64 `
9
+ * ` Digest::Fnv32(String{Flags::AutoMap}, [Init:Uint32?] ) -> Uint32 `
10
+ * ` Digest::Fnv64(String{Flags::AutoMap}, [Init:Uint64?] ) -> Uint64 `
11
+ * ` Digest::MurMurHash(String{Flags:AutoMap}, [Init:Uint64?] ) -> Uint64 `
12
+ * ` Digest::MurMurHash32(String{Flags:AutoMap}, [Init:Uint32?] ) -> Uint32 `
13
+ * ` Digest::MurMurHash2A(String{Flags:AutoMap}, [Init:Uint64?] ) -> Uint64 `
14
+ * ` Digest::MurMurHash2A32(String{Flags:AutoMap}, [Init:Uint32?] ) -> Uint32 `
15
+ * ` Digest::CityHash(String{Flags:AutoMap}, [Init: Uint64?]) -> Uint64 `
16
16
* ` Digest::CityHash128(String{Flags:AutoMap}) -> Tuple<Uint64,Uint64> `
17
17
* ` Digest::NumericHash(Uint64{Flags:AutoMap}) -> Uint64 `
18
18
* ` Digest::Md5Hex(String{Flags:AutoMap}) -> String `
@@ -34,6 +34,8 @@ A set of commonly used hash functions.
34
34
* ` Digest::XXH3(String{Flags:AutoMap}) -> Uint64 `
35
35
* ` Digest::XXH3_128(String{Flags:AutoMap}) -> Tuple<Uint64,Uint64> `
36
36
37
+ The functions for the hashes that support the initialization parameter (seed) accept its value in the optional named argument ` Init ` .
38
+
37
39
### Examples
38
40
39
41
``` yql
0 commit comments