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  var (
    12  	mulLog10_2       = MulLog10_2
    13  	mulLog2_10       = MulLog2_10
    14  	parseFloatPrefix = ParseFloatPrefix
    15  	pow10            = Pow10
    16  	umul128          = Umul128
    17  	umul192          = Umul192
    18  )
    19  

View as plain text