File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ See the License for the specific language governing permissions and
1414limitations under the License.
1515*/
1616
17+ /*
18+ Package list provides list implementations. Currently, this includes a
19+ persistent, immutable linked list.
20+ */
1721package list
1822
1923import "errors"
Original file line number Diff line number Diff line change @@ -14,6 +14,15 @@ See the License for the specific language governing permissions and
1414limitations under the License.
1515*/
1616
17+ /*
18+ Package ctrie provides an implementation of the Ctrie data structure, which is
19+ a concurrent, lock-free hash trie. This data structure was originally presented
20+ in the paper Concurrent Tries with Efficient Non-Blocking Snapshots:
21+
22+ https://axel22.github.io/resources/docs/ctries-snapshot.pdf
23+
24+ TODO: Add snapshot support.
25+ */
1726package ctrie
1827
1928import (
You can’t perform that action at this time.
0 commit comments