diff options
author | Stanislav Kirillov <staskirillov@gmail.com> | 2022-02-10 16:46:08 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:08 +0300 |
commit | cb68f224c46a8ee52ac3fdd2a32534b8bb8dc134 (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /util/string | |
parent | 92fe2b1e7bc79f7b95adef61714fc003f6ea4a1c (diff) | |
download | ydb-cb68f224c46a8ee52ac3fdd2a32534b8bb8dc134.tar.gz |
Restoring authorship annotation for Stanislav Kirillov <staskirillov@gmail.com>. Commit 2 of 2.
Diffstat (limited to 'util/string')
-rw-r--r-- | util/string/cast.pxd | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/util/string/cast.pxd b/util/string/cast.pxd index c351ab8cbc..dc23619e1e 100644 --- a/util/string/cast.pxd +++ b/util/string/cast.pxd @@ -1,10 +1,10 @@ from util.generic.string cimport TString -from libcpp cimport bool as bool_t - +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 + + bool_t TryFromString[T](const TString&, T&) except + + TString ToString[T](const T&) except + - cdef double StrToD(const char* b, char** se) except + + cdef double StrToD(const char* b, char** se) except + |