std::experimental::filesystem::path::assign

From cppreference.com
< cpp‎ | experimental‎ | fs‎ | path
 
 
Technical specifications
Filesystem library (filesystem TS)
Library fundamentals (library fundamentals TS)
Library fundamentals 2 (library fundamentals 2 TS)
Extensions for parallelism (parallelism TS)
Extensions for parallelism 2 (parallelism TS v2)
Extensions for concurrency (concurrency TS)
Concepts (concepts TS)
Ranges (ranges TS)
Special mathematical functions (special math TR)
 
 
 
template< class Source >
path& assign( const Source& source );
(1) (filesystem TS)
template< class InputIt >
path& assign( InputIt first, InputIt last );
(2) (filesystem TS)

Assigns the contents to the path object.

1) Assigns the range of source.
2) Assigns the pathname identified by range [first, last).

Parameters

source - a range to assign
first, last - a range to assign
Type requirements
-
InputIt must meet the requirements of LegacyInputIterator.
-
The value type of InputIt must be one of the encoded character types (char, wchar_t, char16_t and char32_t)

|}

Return value

*this

Exceptions

See also

assigns another path
(public member function)