Mirror of
forum.nim-lang.org
index
9662 :: imported C++ type naming
[2022-11-27T06:51:37+01:00]
View Orginal
sls1005
(orginal)
[2022-11-27T06:51:37+01:00]
view original
For an imported C++ type whose name conflicts with an existing Nim type (like
std::string
), should it be prefixed with
C
or
CPP
? or should it be imported as
String
?
Araq
(orginal)
[2022-11-27T10:32:13+01:00]
view original
As
CppString
.