Attached file is a small patch for libs/algorithms/string/doc/usage.xml file. Emre Turkay 125,126c125,126 < << is_executable("command.com")? "is": "is not" < << "an executable" ---
<< (is_executable(str1)? " is": " is not") << " an executable"
130c130 < char text1[]="hello world!"; ---
char text1[]="hello";
133c133 < << all( text1, is_lower() )? "is": "is not" ---
<< (all( text1, is_lower() )? " is": " is not")
135c135 < << endl; // prints "hello world! is written in the lower case" ---
<< endl; // prints "hello is written in the lower case"
It's always a good idea to indicate the library concerned when
posting, so the appropriate author/maintainer will notice.
Emre Turkay
Attached file is a small patch for libs/algorithms/string/doc/usage.xml file.
Emre Turkay 125,126c125,126 < << is_executable("command.com")? "is": "is not" < << "an executable" ---
<< (is_executable(str1)? " is": " is not") << " an executable"
130c130 < char text1[]="hello world!"; ---
char text1[]="hello";
133c133 < << all( text1, is_lower() )? "is": "is not" ---
<< (all( text1, is_lower() )? " is": " is not")
135c135 < << endl; // prints "hello world! is written in the lower case" ---
<< endl; // prints "hello is written in the lower case"
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
-- Dave Abrahams Boost Consulting www.boost-consulting.com
Thanks, I'll apply it to CVS. On Sun, May 22, 2005 at 06:12:32AM -0500, Emre Turkay wrote:
Attached file is a small patch for libs/algorithms/string/doc/usage.xml file.
Emre Turkay
125,126c125,126 < << is_executable("command.com")? "is": "is not" < << "an executable" ---
<< (is_executable(str1)? " is": " is not") << " an executable"
130c130 < char text1[]="hello world!"; ---
char text1[]="hello";
133c133 < << all( text1, is_lower() )? "is": "is not" ---
<< (all( text1, is_lower() )? " is": " is not")
135c135 < << endl; // prints "hello world! is written in the lower case" ---
<< endl; // prints "hello is written in the lower case"
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
participants (3)
-
David Abrahams
-
Emre Turkay
-
Pavol Droba