| 22 | } |
| 23 | |
| 24 | std::function<BlocksciIteratorType(std::any &)> RangeProxy::getGenericIterator() const { |
| 25 | return [generic = getGenericRange()](std::any &val) -> BlocksciIteratorType { |
| 26 | return generic(val).toIterator(); |
| 27 | }; |
| 28 | } |
| 29 | |
| 30 | std::function<std::any(std::any &)> RangeProxy::getGenericAny() const { |
| 31 | auto generic = getGenericRange(); |
no test coverage detected