Exemple #1
0
DataStore String_Plus_String_Operator_Calculation::doInternalCalculation(const DataStore &left, const DataStore &right) const
{
    std::string ans = left.stringValue () + right.stringValue();
    return DataStore(SupportedType::stString, ans);
}