| 40 | static leaf::result<BigInt> fromString(const std::string& s) { return BigInt{s}; } |
| 41 | explicit BigInt(const std::string&) { } |
| 42 | BigInt half() const { return BigInt{""}; } |
| 43 | friend std::ostream& operator<<(std::ostream& o, const BigInt&) { return o << "big int half"; } |
| 44 | }; |
| 45 |