| 125 | class TFloat : public TNumber { |
| 126 | public: |
| 127 | explicit TFloat(double value) { data_ = make_object<TFloatObj>(value); } |
| 128 | |
| 129 | static uint64_t CustomAnyHash(const Any& src) { |
| 130 | double value = src.cast<TFloat>()->value; |
nothing calls this directly
no outgoing calls
no test coverage detected