| 705 | } |
| 706 | |
| 707 | bool RPCArg::IsOptional() const |
| 708 | { |
| 709 | if (m_fallback.index() != 0) { |
| 710 | return true; |
| 711 | } else { |
| 712 | return RPCArg::Optional::NO != std::get<RPCArg::Optional>(m_fallback); |
| 713 | } |
| 714 | } |
| 715 | |
| 716 | std::string RPCArg::ToDescriptionString() const |
| 717 | { |
no test coverage detected