STAPL API Reference          
Overview   Containers   Algorithms   Views   Skeletons   Run-Time System
Modules     Classes    
List of all members | Public Member Functions | Public Types
stapl::runtime::c_string Class Reference

Wraps a C string into a class. More...

Public Member Functions

 c_string (const char_type *s=nullptr)
 Creates a new object from the given array. More...
 
 c_string (const char_type *s, const std::size_t length)
 Creates a new object from the given array. More...
 
 c_string (c_string const &other)
 
 c_string (c_string &&other) noexcept
 
c_stringoperator= (c_string const &other)
 
c_stringoperator= (c_string &&other) noexcept
 
size_type size (void) const noexcept
 Returns the size of the string. More...
 
size_type length (void) const noexcept
 Returns the size of the string. More...
 
const char_type * c_str (void) const noexcept
 Returns the internal C representation of the string. More...
 
 operator const char_type * (void) noexcept
 
void reset (char_type *s=nullptr, const std::size_t len=0)
 Resets the c_string with the given string and size. More...
 

Public Types

typedef std::size_t size_type
 

Detailed Description

Wraps a C string into a class.

Provides functions to clone and find the size of the C string.

Constructor & Destructor Documentation

◆ c_string() [1/2]

stapl::runtime::c_string::c_string ( const char_type *  s = nullptr)
explicit

Creates a new object from the given array.

It will allocate and copy the string internally.

◆ c_string() [2/2]

stapl::runtime::c_string::c_string ( const char_type *  s,
const std::size_t  length 
)

Creates a new object from the given array.

It will allocate and copy the string internally. The length of the string is given by the length parameter.

Member Function Documentation

◆ size()

size_type stapl::runtime::c_string::size ( void  ) const
noexcept

Returns the size of the string.

Returns
The length of the stored string without the \0 .
See also
c_string::length()

◆ length()

size_type stapl::runtime::c_string::length ( void  ) const
noexcept

Returns the size of the string.

Returns
The length of the stored string without the \0 .
See also
c_string::length()
c_string::size()

◆ c_str()

const char_type* stapl::runtime::c_string::c_str ( void  ) const
noexcept

Returns the internal C representation of the string.

The string returned is '\0' terminated and is valid as long as the associated c_string object is alive.

◆ reset()

void stapl::runtime::c_string::reset ( char_type *  s = nullptr,
const std::size_t  len = 0 
)

Resets the c_string with the given string and size.

See also
c_string::c_string()

The documentation for this class was generated from the following file: