blob: 8d84fb16ae40c9df6022e9707d9a0e4bae110fd3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
from util.generic.string cimport TString
from libcpp cimport bool as bool_t
cdef extern from "<util/string/cast.h>" nogil:
T FromString[T](const TString&) except +
bool_t TryFromString[T](const TString&, T&) except +
TString ToString[T](const T&) except +
cdef double StrToD(const char* b, char** se) except +
|