From 13e5a4981643ec7d68650feaf15963caf9c112b0 Mon Sep 17 00:00:00 2001 From: Dawn Perchik Date: Sun, 27 Sep 2020 17:42:16 -0700 Subject: [PATCH] [strings] Add page breaks. Partially addresses #4228. --- source/strings.tex | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/source/strings.tex b/source/strings.tex index 8c424da53fb..52bb4c142cf 100644 --- a/source/strings.tex +++ b/source/strings.tex @@ -786,6 +786,7 @@ template, class Allocator = allocator> class basic_string { +@\newpage@ public: // types using traits_type = traits; @@ -1328,6 +1329,8 @@ The second form throws nothing if \tcode{alloc == str.get_allocator()}. \end{itemdescr} +\newpage + \begin{itemdecl} template::value_type>> @@ -3683,6 +3686,8 @@ for the return type. \end{itemdescr} +\newpage + \indexlibraryglobal{stof}% \indexlibraryglobal{stod}% \indexlibraryglobal{stold}% @@ -4945,6 +4950,9 @@ \tcode{t <=> sv} & \tcode{S(t) <=> sv} \\ \tcode{sv <=> t} & \tcode{sv <=> S(t)} \\ \end{libtab2} + +\newpage + \begin{example} A sample conforming implementation for \tcode{operator==} would be: \begin{codeblock}