Add function documentation

This commit is contained in:
Mike Bloom 2026-07-16 20:22:49 -04:00
parent 048204b012
commit c0bf9dfd4b

View File

@ -425,6 +425,7 @@ namespace etl
//*************************************************************************
/// Shrinks the view by moving its start forward.
/// When n >= size(), the view is set to empty.
//*************************************************************************
ETL_CONSTEXPR14 void remove_prefix(size_type n) ETL_NOEXCEPT
{
@ -436,6 +437,7 @@ namespace etl
//*************************************************************************
/// Shrinks the view by moving its end backward.
/// When n >= size(), the view is set to empty.
//*************************************************************************
ETL_CONSTEXPR14 void remove_suffix(size_type n) ETL_NOEXCEPT
{