1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-04 12:52:28 +08:00

fix: fix issue #274

This commit is contained in:
dudaodong
2024-12-02 17:06:06 +08:00
parent 7fb49515ce
commit 3cd546d7f2
8 changed files with 354 additions and 377 deletions

View File

@@ -1153,12 +1153,12 @@ func main() {
### <span id="ToBigInt">ToBigInt</span>
<p>值转换为bigInt。</p>
<p>将整数值转换为bigInt。</p>
<b>函数签名:<span style="float:right;display:inline-block;">[运行](todo)</span></b>
```go
func ToBigInt[T constraints.Integer](v T) (*big.Int, error)
func ToBigInt[T any](v T) (*big.Int, error)
```
<b>示例:</b>