Add more info in the vector package's godoc.

This commit is contained in:
Qi Xiao 2021-05-03 22:09:29 +01:00
parent 7fa2fc719e
commit 8ed0fbdb11

View File

@ -1,4 +1,9 @@
// Package vector implements persistent vector.
//
// This is a Go clone of Clojure's PersistentVector type
// (https://github.com/clojure/clojure/blob/master/src/jvm/clojure/lang/PersistentVector.java).
// For an introduction to the internals, see
// https://hypirion.com/musings/understanding-persistent-vector-pt-1.
package vector
import (