mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
tools: new tool to extracts function names declared in V files
This commit is contained in:

committed by
Alexander Medvednikov

parent
cd8b0d04bb
commit
eef73eea22
@@ -4,7 +4,7 @@
|
||||
|
||||
module hash
|
||||
|
||||
interface Hash {
|
||||
interface Hasher {
|
||||
// Sum appends the current hash to b and returns the resulting array.
|
||||
// It does not change the underlying hash state.
|
||||
sum(b []byte) []byte
|
||||
@@ -12,10 +12,10 @@ interface Hash {
|
||||
block_size() int
|
||||
}
|
||||
|
||||
interface Hash32 {
|
||||
interface Hash32er {
|
||||
sum32() u32
|
||||
}
|
||||
|
||||
interface Hash64 {
|
||||
interface Hash64er {
|
||||
sum64() u64
|
||||
}
|
||||
|
Reference in New Issue
Block a user