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

правки по ПР

parent 61fe4b5a
Branches
Tags
No related merge requests found
......@@ -10,7 +10,9 @@ 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.
// 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
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment