Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hash: add missing documentation to all public functions #16987

Merged
merged 1 commit into from
Jan 15, 2023
Merged

hash: add missing documentation to all public functions #16987

merged 1 commit into from
Jan 15, 2023

Conversation

nahuakang
Copy link
Contributor

Add missing documentation per v missdoc command for #7047:

$ v missdoc vlib/hash/                                
/home/nahua/projects/v/vlib/hash/wyhash.c.v:10:0:pub fn wyhash_c(key &u8, len u64, seed u64) u64 
/home/nahua/projects/v/vlib/hash/wyhash.c.v:15:0:pub fn wyhash64_c(a u64, b u64) u64 
/home/nahua/projects/v/vlib/hash/wyhash.c.v:20:0:pub fn sum64_string(key string, seed u64) u64 
/home/nahua/projects/v/vlib/hash/wyhash.c.v:25:0:pub fn sum64(key []u8, seed u64) u64 
/home/nahua/projects/v/vlib/hash/wyhash.v:32:0:pub fn wymum(a u64, b u64) u64 
/home/nahua/projects/v/vlib/hash/crc32/crc32.v:48:0:pub fn (c &Crc32) checksum(b []u8) u32 

The following could be updated to #7047:

  • vlib/hash/crc32/crc32.v
  • vlib/hash/fnv1a/fnv1a.v <- Remove this checkbox
  • vlib/hash/wyhash.c.v <- Add this checkbox
  • vlib/hash/wyhash.v

Please suggest if my addition can be improved as I only learned about wyhash, CRC-32, etc., today. Cheers!

Copy link
Member

@spytheman spytheman left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good work.

@spytheman spytheman merged commit 5f30110 into vlang:master Jan 15, 2023
Copy link
Contributor

@larpon larpon left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me. I have no idea if "polynomial" is what people usually refer to (I have not personally encountered it in relation to hashing), besides that; nice attention to doc details 👍🏻👍🏻👍🏻

@spytheman
Copy link
Member

It is related to the CRC32 calculation, see https://en.wikipedia.org/wiki/Cyclic_redundancy_check .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants