From 0d937728ede473062923eaec2a9f3482bcbf4e90 Mon Sep 17 00:00:00 2001 From: John Date: Sat, 27 Apr 2024 21:15:45 -0500 Subject: [PATCH] cl-structures: Mention new structures in the top-module blurb --- compiler/cl-structures/src/lib.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/compiler/cl-structures/src/lib.rs b/compiler/cl-structures/src/lib.rs index 342a994..ea4d35e 100644 --- a/compiler/cl-structures/src/lib.rs +++ b/compiler/cl-structures/src/lib.rs @@ -1,6 +1,11 @@ //! # Universally useful structures //! - [Span](struct@span::Span): Stores a start and end [Loc](struct@span::Loc) //! - [Loc](struct@span::Loc): Stores the index in a stream +//! - [TypedInterner][ti] & [StringInterner][si]: Provies stable, unique allocations +//! - [Stack](stack::Stack): Contiguous collections with constant capacity +//! +//! [ti]: intern::typed_interner::TypedInterner +//! [si]: intern::string_interner::StringInterner #![warn(clippy::all)] #![feature(inline_const, dropck_eyepatch, decl_macro, get_many_mut)] #![deny(unsafe_op_in_unsafe_fn)]