From f482de7d1fd3613b27d4ac75a6db00eaf78e0f56 Mon Sep 17 00:00:00 2001 From: "A. Jiang" Date: Thu, 27 Oct 2022 13:15:18 +0800 Subject: [PATCH] [views.span] Add \exposid for `data_` and `size_` --- source/containers.tex | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/source/containers.tex b/source/containers.tex index 1ff85c6de6..3a705d3fce 100644 --- a/source/containers.tex +++ b/source/containers.tex @@ -17586,8 +17586,8 @@ constexpr const_reverse_iterator crend() const noexcept { return rend(); } private: - pointer data_; // \expos - size_type size_; // \expos + pointer @\exposid{data_}@; // \expos + size_type @\exposid{size_}@; // \expos }; template @@ -17660,8 +17660,8 @@ \pnum \effects -Initializes \tcode{data_} with \tcode{to_address(first)} and -\tcode{size_} with \tcode{count}. +Initializes \tcode{\exposid{data_}} with \tcode{to_address(first)} and +\tcode{\exposid{size_}} with \tcode{count}. \pnum \throws @@ -17703,8 +17703,8 @@ \pnum \effects -Initializes \tcode{data_} with \tcode{to_address(first)} and -\tcode{size_} with \tcode{last - first}. +Initializes \tcode{\exposid{data_}} with \tcode{to_address(first)} and +\tcode{\exposid{size_}} with \tcode{last - first}. \pnum \throws @@ -17781,8 +17781,8 @@ \pnum \effects -Initializes \tcode{data_} with \tcode{ranges::data(r)} and -\tcode{size_} with \tcode{ranges::size(r)}. +Initializes \tcode{\exposid{data_}} with \tcode{ranges::data(r)} and +\tcode{\exposid{size_}} with \tcode{ranges::size(r)}. \pnum \throws @@ -18020,7 +18020,7 @@ \begin{itemdescr} \pnum \effects -Equivalent to: \tcode{return size_;} +Equivalent to: \tcode{return \exposid{size_};} \end{itemdescr} \indexlibrarymember{span}{size_bytes}% @@ -18100,7 +18100,7 @@ \begin{itemdescr} \pnum \effects -Equivalent to: \tcode{return data_;} +Equivalent to: \tcode{return \exposid{data_};} \end{itemdescr} \rSec3[span.iterators]{Iterator support}