Skip to content
Snippets Groups Projects
Commit 61943d0f authored by ko_oler's avatar ko_oler
Browse files

добавлен комментарий

parent dab2b2b5
No related branches found
No related tags found
No related merge requests found
...@@ -10,8 +10,8 @@ import ( ...@@ -10,8 +10,8 @@ import (
const ( const (
NumberFormatInt = "int" NumberFormatInt = "int"
NumberFormatFloat = "float" NumberFormatFloat = "float"
maxInt = 1<<53 - 1 maxInt = 1<<53 - 1 // Integers from −9,007,199,254,740,992 to 9,007,199,254,740,992 can be exactly represented in float64.
minInt = -1<<53 + 1 minInt = -1<<53 + 1 // Integers from −9,007,199,254,740,992 to 9,007,199,254,740,992 can be exactly represented in float64.
) )
var numberType = &NumberType{} var numberType = &NumberType{}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment