Boost logo

Boost Users :

From: David Abrahams (dave_at_[hidden])
Date: 2005-05-22 08:10:34


It's always a good idea to indicate the library concerned when
posting, so the appropriate author/maintainer will notice.

Emre Turkay <emre.turkay_at_[hidden]> writes:

> Attached file is a small patch for libs/algorithms/string/doc/usage.xml
> file.
>
> Emre Turkay
> 125,126c125,126
> < &lt;&lt; is_executable("command.com")? "is": "is not"
> < &lt;&lt; "an executable"
> ---
>> &lt;&lt; (is_executable(str1)? " is": " is not")
>> &lt;&lt; " an executable"
> 130c130
> < char text1[]="hello world!";
> ---
>> char text1[]="hello";
> 133c133
> < &lt;&lt; all( text1, is_lower() )? "is": "is not"
> ---
>> &lt;&lt; (all( text1, is_lower() )? " is": " is not")
> 135c135
> < &lt;&lt; endl; // prints "hello world! is written in the lower case"
> ---
>> &lt;&lt; endl; // prints "hello is written in the lower case"
> _______________________________________________
> Boost-users mailing list
> Boost-users_at_[hidden]
> http://lists.boost.org/mailman/listinfo.cgi/boost-users

-- 
Dave Abrahams
Boost Consulting
www.boost-consulting.com

Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net