pgregory.net/rand@v1.0.3-0.20230808192358-a0b8ce02f4da/common_test.go (about)

     1  // Copyright 2022 Gregory Petrosyan <gregory.petrosyan@gmail.com>
     2  //
     3  // This Source Code Form is subject to the terms of the Mozilla Public
     4  // License, v. 2.0. If a copy of the MPL was not distributed with this
     5  // file, You can obtain one at https://mozilla.org/MPL/2.0/.
     6  
     7  package rand_test
     8  
     9  const (
    10  	tiny  = 52
    11  	small = 1000
    12  )
    13  
    14  var (
    15  	sinkInt     int
    16  	sinkInt32   int32
    17  	sinkInt64   int64
    18  	sinkUint32  uint32
    19  	sinkUint64  uint64
    20  	sinkFloat64 float64
    21  	sinkFloat32 float32
    22  )