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: replace .write method with io.Writer embedding #22009

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion vlib/hash/hash.v
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
// that can be found in the LICENSE file.
module hash

import io

pub interface Hash {
io.Writer
mut:
// Sum appends the current hash to b and returns the resulting array.
// It does not change the underlying hash state.
Expand All @@ -12,7 +15,6 @@ mut:
block_size() int
free()
reset()
write(p []u8) !int
}

interface Hash32er {
Expand Down
Loading