Skip to content
Snippets Groups Projects
Commit 7002c7a2 authored by ko_oler's avatar ko_oler
Browse files

правки по ПР

parent 61fe4b5a
No related branches found
No related tags found
No related merge requests found
......@@ -10,8 +10,10 @@ import (
const (
NumberFormatInt = "int"
NumberFormatFloat = "float"
maxInt = 1<<53 - 1 // Integers from −9,007,199,254,740,991 to 9,007,199,254,740,991 can be exactly represented in float64.
minInt = -1<<53 + 1
// The largest integer that can be represented in IEEE 754 double (64-bit) is a value from -2^53 to 2^53.
maxInt = 1<<53 - 1
minInt = -1<<53 + 1
)
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