Skip to content

Commit

Permalink
Add codelinks in collections
Browse files Browse the repository at this point in the history
  • Loading branch information
danakj committed Oct 4, 2023
1 parent 900a1a9 commit f9f0f2b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions sus/collections/collections.h
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,8 @@ namespace sus {
/// [`std::ranges::viewable_range`](https://en.cppreference.com/w/cpp/ranges/viewable_range),
/// such as with `vec.iter().range()`.
///
/// Iterators over value types or mutable references when converted by `range()`
/// will also satisfy
/// Iterators over value types or mutable references when converted by
/// [`range()`]($sus::iter::IteratorBase::range) will also satisfy
/// [`std::ranges::output_range`](https://en.cppreference.com/w/cpp/ranges/input_range),
/// such as with `vec.iter_mut().range()`.
///
Expand All @@ -268,6 +268,7 @@ namespace sus {
/// and traits/concepts into C++. Additional changes are minimized to aid with
/// familiarity and working across languages, but some are necessary for use in
/// C++ or interop with the standard library. Subspace also provides additional
/// containers specific to C++ when needed, such as `Array` (and TODO: FlatMap).
/// containers specific to C++ when needed, such as [`Array`](
/// $sus::collections::Array) (and TODO: FlatMap).
namespace collections {}
} // namespace sus

0 comments on commit f9f0f2b

Please sign in to comment.