Source file src/internal/strconv/import_test.go

     1  // Copyright 2025 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package strconv_test
     6  
     7  import . "internal/strconv"
     8  
     9  type uint128 = Uint128
    10  
    11  const (
    12  	pow10Min = Pow10Min
    13  	pow10Max = Pow10Max
    14  )
    15  
    16  var (
    17  	mulLog10_2       = MulLog10_2
    18  	mulLog2_10       = MulLog2_10
    19  	parseFloatPrefix = ParseFloatPrefix
    20  	pow10            = Pow10
    21  	umul128          = Umul128
    22  	umul192          = Umul192
    23  )
    24  

View as plain text