Get self as a CppString

Property definitions

cpp :: cpp $ CString :: to_cpp_string
	# Get `self` as a `CppString`
	fun to_cpp_string(length: Int): CppString in "C++" `{
		return new std::string(self, length);
	`}
lib/cpp/cpp.nit:32,2--35,3