how to typedef array of 4 char to be used in map template
-
That’s not the way the map template is defined by Microsoft map Class | Microsoft Learn[^]
template<
class Key,
class T,
class Compare = std::less,
class Allocator = std::allocator>class map;
Microsoft:
template ,
class Allocator=allocator>>
class map;Do you see significant differences?
"In testa che avete, Signor di Ceprano?" -- Rigoletto
-
template<
class Key,
class T,
class Compare = std::less,
class Allocator = std::allocator>class map;
Microsoft:
template ,
class Allocator=allocator>>
class map;Do you see significant differences?
"In testa che avete, Signor di Ceprano?" -- Rigoletto
-
I see the third parameter to the template in microsoft docs is class traits in the cpp reference its class compare thank you
-
That's, you know, just a matter of naming... BTW, you are welcome.
"In testa che avete, Signor di Ceprano?" -- Rigoletto
this is just a general comment I thought MainFrame Assembler was Hard but being a C\C++ proficient coder is a very difficult skill to master as an aside just looked at the retrieval for the map class "AT" method it looks like if not found it generates an exception would of been a lot simpler if they gave back a bad return code Thank
-
this is just a general comment I thought MainFrame Assembler was Hard but being a C\C++ proficient coder is a very difficult skill to master as an aside just looked at the retrieval for the map class "AT" method it looks like if not found it generates an exception would of been a lot simpler if they gave back a bad return code Thank
-
this is just a general comment I thought MainFrame Assembler was Hard but being a C\C++ proficient coder is a very difficult skill to master as an aside just looked at the retrieval for the map class "AT" method it looks like if not found it generates an exception would of been a lot simpler if they gave back a bad return code Thank
-
You might use
find
, to the purpose (see std::map<Key,T,Compare,Allocator>::find - cppreference.com[^])."In testa che avete, Signor di Ceprano?" -- Rigoletto
Thank you again you know I’m an assembler mail framer by birth when I post any question on IBMMAIN no matter how much research I have done I get screamed at wish IBMMAIN could be more like the codeproject thank. Time for to implement my code or actually yours