Source file src/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 . "strconv"
     8  
     9  type uint128 = Uint128
    10  
    11  var (
    12  	baseError        = BaseError
    13  	bitSizeError     = BitSizeError
    14  	mulLog10_2       = MulLog10_2
    15  	mulLog2_10       = MulLog2_10
    16  	parseFloatPrefix = ParseFloatPrefix
    17  	pow10            = Pow10
    18  	umul128          = Umul128
    19  	umul192          = Umul192
    20  )
    21  

View as plain text