GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::char_traits::find(3) C++ Standard Libary std::char_traits::find(3)

std::char_traits::find - std::char_traits::find


static const char_type* find( const char_type* p, std::size_t count, (until C++17)
const char_type& ch );
static constexpr const char_type* find( const char_type* p, (since C++17)
std::size_t count, const char_type& ch );


Searches for character ch within the first count characters of the sequence pointed
to by p.


p - pointer to a character string to search
count - the number of characters to analyze
ch - the character to search for


A pointer to the first character in the range specified by [p, p + count) that
compares equal to ch, or a null pointer if not found.


Throws nothing.


Linear in count.

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.