You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In case it's not clear, the !std::same_as<ReturnType, NoOverloadMatchesArguments> is saying what the text says, that the arguments are not binding to a callable signature. Maybe it's not testing convertible somewhere.
Result is not as 100%'d as Option is: #185 is the bug for completing the API to match https://doc.rust-lang.org/stable/std/result/enum.Result.html and provide tests for everything. It was enough for me to make use of it in Subdoc and the rest of the sus library so far, basically.
If you're up for fixing it, I'd be happy to review it, or I can try get to fixing this. I don't like leaving something broken in here.
The following code works when using
std::expected
, but errors withsus::Result
.I don't see any tests for
Result::and_then
; should I switch back tostd::expected
for the time being?The text was updated successfully, but these errors were encountered: