diff options
author | pozhilov <pozhilov@yandex-team.ru> | 2022-02-10 16:49:27 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:27 +0300 |
commit | 23bf1d16dddf213a6aa8e8d5c8621e1242a1f118 (patch) | |
tree | ed030ff443eb83431f11e53b6460b1b73d035412 /util/string/cast.pxd | |
parent | 7156b3713e77ce36387436e5558320917698b7a2 (diff) | |
download | ydb-23bf1d16dddf213a6aa8e8d5c8621e1242a1f118.tar.gz |
Restoring authorship annotation for <pozhilov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/string/cast.pxd')
-rw-r--r-- | util/string/cast.pxd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/string/cast.pxd b/util/string/cast.pxd index dc23619e1e..b0fcc8123f 100644 --- a/util/string/cast.pxd +++ b/util/string/cast.pxd @@ -1,8 +1,8 @@ -from util.generic.string cimport TString - +from util.generic.string cimport TString + from libcpp cimport bool as bool_t -cdef extern from "<util/string/cast.h>" nogil: +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 + |