Skip to content

Instantly share code, notes, and snippets.

@schmohlio
schmohlio / sortByteSlice.go
Created September 7, 2016 21:37
sort byte slices in Golang without needing to fmt as string. useful for Set hashes
package main
import (
"bytes"
"log"
"sort"
)
// implement `Interface` in sort package.
type sortByteArrays [][]byte