optional.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. #pragma once
  2. #include <util/string/cast.h>
  3. #include <optional>
  4. namespace NYT {
  5. ////////////////////////////////////////////////////////////////////////////////
  6. template <class T>
  7. struct TOptionalTraits
  8. {
  9. using TOptional = std::optional<T>;
  10. using TValue = T;
  11. static constexpr bool HasValue(const TOptional& opt)
  12. {
  13. return opt.has_value();
  14. }
  15. static constexpr TOptional Empty()
  16. {
  17. return std::nullopt;
  18. }
  19. };
  20. template <class T>
  21. struct TOptionalTraits<std::optional<T>>
  22. {
  23. using TOptional = std::optional<T>;
  24. using TValue = T;
  25. static constexpr bool HasValue(const TOptional& opt)
  26. {
  27. return opt.has_value();
  28. }
  29. static constexpr TOptional Empty()
  30. {
  31. return std::nullopt;
  32. }
  33. };
  34. template <class T>
  35. struct TOptionalTraits<T*>
  36. {
  37. using TOptional = T*;
  38. using TValue = T*;
  39. static constexpr bool HasValue(const TOptional& opt)
  40. {
  41. return opt != nullptr;
  42. }
  43. static constexpr TOptional Empty()
  44. {
  45. return nullptr;
  46. }
  47. };
  48. template <class T>
  49. struct TOptionalTraits<TIntrusivePtr<T>>
  50. {
  51. using TOptional = TIntrusivePtr<T>;
  52. using TValue = TIntrusivePtr<T>;
  53. static bool HasValue(const TOptional& opt)
  54. {
  55. return opt.Get() != nullptr;
  56. }
  57. static constexpr TOptional Empty()
  58. {
  59. return TIntrusivePtr<T>{};
  60. }
  61. };
  62. ////////////////////////////////////////////////////////////////////////////////
  63. template <class T>
  64. struct TStdOptionalTraits
  65. {
  66. static constexpr bool IsStdOptional = false;
  67. using TValueType = T;
  68. };
  69. template <class T>
  70. struct TStdOptionalTraits<std::optional<T>>
  71. {
  72. static constexpr bool IsStdOptional = true;
  73. using TValueType = T;
  74. };
  75. ////////////////////////////////////////////////////////////////////////////////
  76. } // namespace NYT
  77. template <class T>
  78. struct THash<std::optional<T>>
  79. {
  80. size_t operator()(const std::optional<T>& nullable) const
  81. {
  82. return nullable ? THash<T>()(*nullable) : 0;
  83. }
  84. };