mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-05 03:27:48 +00:00
8 lines
134 B
Go
8 lines
134 B
Go
package reflect
|
|
|
|
import "internal/reflectlite"
|
|
|
|
func Swapper(slice interface{}) func(i, j int) {
|
|
return reflectlite.Swapper(slice)
|
|
}
|