diff --git a/doc/html/string_ref.html b/doc/html/string_ref.html index 0b8a9d1..3b6ae8d 100644 --- a/doc/html/string_ref.html +++ b/doc/html/string_ref.html @@ -44,7 +44,7 @@
History
-
+
@@ -115,7 +115,7 @@ string_ref does.

-
+
@@ -130,7 +130,7 @@ return bar.substr ( 2, 3 ); } -if ( extract_part ( "ABCDEFG" ).front() == "C" ) { /* do something */ } +if ( extract_part ( "ABCDEFG" ).front() == 'C' ) { /* do something */ }

Let's figure out what happens in this (contrived) example. @@ -166,15 +166,15 @@ copied, but those are cheap operations.

-
+

The header file "string_ref.hpp" defines a template boost::basic_string_ref, and four specializations - for char - / wchar_t / char16_t - / char32_t . + / wchar_t / char16_t + / char32_t .

#include <boost/utility/string_ref.hpp> @@ -256,7 +256,7 @@ bool ends_with(basic_string_ref x) const ;

-
+
@@ -271,7 +271,7 @@
- +

Last revised: January 14, 2013 at 16:24:14 GMT

Last revised: October 27, 2013 at 21:01:34 GMT