Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
std::experi...path::assign(3) C++ Standard Libarystd::experi...path::assign(3)

NAME
       std::experimental::filesystem::path::assign	-      std::experimen-
       tal::filesystem::path::assign

Synopsis
	  template< class Source >		       (1) (filesystem TS)
	  path&	assign(	const Source& source );
	  template< class InputIt >		       (2) (filesystem TS)
	  path&	assign(	InputIt	first, InputIt last );

	  Assigns the contents to the path object.

	  1) Assigns the range of source.

	   This	section	is incomplete

	  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
	   This	section	is incomplete

See also
	  operator= assigns another path
		    (public member function)

http://cppreference.com		  2022.07.31	 std::experi...path::assign(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=std::experimental::filesystem::path::assign&sektion=3&manpath=FreeBSD+Ports+15.0>

home | help