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

fix: MaxInt was added only in 1.17 use instead

This commit is contained in:
dudaodong
2024-11-27 15:09:23 +08:00
parent b4e7977feb
commit e1e15883e9

View File

@@ -17,7 +17,7 @@ import (
)
const (
MaximumCapacity = math.MaxInt>>1 + 1
MaximumCapacity = math.MaxInt32>>1 + 1
Numeral = "0123456789"
LowwerLetters = "abcdefghijklmnopqrstuvwxyz"
UpperLetters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"