Does c++ or the STL support the function valueOf within java.lang.Enum<e>
such that it enables
elements = Syntax.valueOf(temp);
switch(elements) {}
and whereby elements
is of type enum
and temp
is of type String?
Does c++ or the STL support the function valueOf within java.lang.Enum<e>
such that it enables
elements = Syntax.valueOf(temp);
switch(elements) {}
and whereby elements
is of type enum
and temp
is of type String?