示例#1
0
std::vector<std::string> to_vector(CFSArray<CFSWString> arr) {
    std::vector<std::string> v;
    for (INTPTR i = 0; i < arr.GetSize(); i++)
        v.push_back(to_stdstring(arr[i]));
    return v;
}
示例#2
0
文件: misc.cpp 项目: tell/pbkz
void conv(float10& a,ZZ& b) {    a = (float10)to_stdstring(b); }
示例#3
0
文件: misc.cpp 项目: tell/pbkz
void conv(ZZ& a,bkzfloat& b) {
    conv(a,to_stdstring(b).c_str());
}
示例#4
0
文件: misc.cpp 项目: tell/pbkz
void conv(mpfr_float& a,ZZ& b) {    a = (mpfr_float)to_stdstring(b); }