2017-06-27 04:21:40 +00:00
|
|
|
// Copyright 2017 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-07-30 14:28:58 -07:00
|
|
|
//go:build go1.8 && !go1.13
|
2019-09-06 18:12:46 +00:00
|
|
|
// +build go1.8,!go1.13
|
2017-06-27 04:21:40 +00:00
|
|
|
|
2019-09-06 18:12:46 +00:00
|
|
|
package sort
|
2018-01-09 01:23:08 +00:00
|
|
|
|
2019-09-06 18:12:46 +00:00
|
|
|
import "reflect"
|
2018-01-09 01:23:08 +00:00
|
|
|
|
2019-09-06 18:12:46 +00:00
|
|
|
var reflectValueOf = reflect.ValueOf
|
|
|
|
var reflectSwapper = reflect.Swapper
|