forked from astaxie/gopkg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## func Uvarint(buf []byte) (uint64, int) | ||
|
||
###参数列表 | ||
|
||
- buf 需写入的缓冲区 | ||
- x uint64类型数字 | ||
|
||
###返回值: | ||
|
||
- int 写入字节数。 | ||
- panic buf过小。 | ||
|
||
###功能说明: | ||
|
||
PutUvarint主要是将uint64类型放入buf中,并返回写入的字节数。如果buf过小,putUvarint将抛出panic。 | ||
|
||
###代码实例: |