diff options
author | bur3 <bur3@yandex-team.ru> | 2022-02-10 16:52:03 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:52:03 +0300 |
commit | 21d4894ec358934fd085d6ed0a177bf19aee27cc (patch) | |
tree | 03abeeefb9dd8239de553d07de972d660105e9ae /util/string/cast.pxd | |
parent | fa2bf14034a6e0ee20178ad95dd1e6a80c0a61ac (diff) | |
download | ydb-21d4894ec358934fd085d6ed0a177bf19aee27cc.tar.gz |
Restoring authorship annotation for <bur3@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/string/cast.pxd')
-rw-r--r-- | util/string/cast.pxd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/string/cast.pxd b/util/string/cast.pxd index dc23619e1e..8d84fb16ae 100644 --- a/util/string/cast.pxd +++ b/util/string/cast.pxd @@ -3,8 +3,8 @@ 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 + + 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 + |