github.com/parquet-go/parquet-go@v0.20.0/order_amd64.go (about)

     1  //go:build !purego
     2  
     3  package parquet
     4  
     5  //go:noescape
     6  func orderOfInt32(data []int32) int
     7  
     8  //go:noescape
     9  func orderOfInt64(data []int64) int
    10  
    11  //go:noescape
    12  func orderOfUint32(data []uint32) int
    13  
    14  //go:noescape
    15  func orderOfUint64(data []uint64) int
    16  
    17  //go:noescape
    18  func orderOfFloat32(data []float32) int
    19  
    20  //go:noescape
    21  func orderOfFloat64(data []float64) int