Skip to content

Commit

Permalink
Add operator&=( result&, unary-returning-result )
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed Oct 31, 2023
1 parent ca5bca3 commit d11dd4b
Show file tree
Hide file tree
Showing 4 changed files with 146 additions and 0 deletions.
18 changes: 18 additions & 0 deletions include/boost/system/result.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1137,6 +1137,24 @@ result<T, E>& operator&=( result<T, E>& r, F&& f )
return r;
}

// result &= unary-returning-result

template<class T, class E, class F,
class U = decltype( std::declval<F>()( std::declval<T>() ) ),
class En1 = typename std::enable_if<detail::is_result<U>::value>::type,
class En2 = typename std::enable_if<detail::is_value_convertible_to<typename U::value_type, T>::value>::type,
class En3 = typename std::enable_if<std::is_convertible<typename U::error_type, E>::value>::type
>
result<T, E>& operator&=( result<T, E>& r, F&& f )
{
if( r )
{
r = std::forward<F>( f )( *std::move( r ) );
}

return r;
}

} // namespace system
} // namespace boost

Expand Down
1 change: 1 addition & 0 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -175,3 +175,4 @@ boost_test(TYPE run SOURCES result_or_fn0r.cpp)
boost_test(TYPE run SOURCES result_and_fn1v.cpp)
boost_test(TYPE run SOURCES result_and_fn1r.cpp)
boost_test(TYPE run SOURCES result_and_eq_fn1v.cpp)
boost_test(TYPE run SOURCES result_and_eq_fn1r.cpp)
1 change: 1 addition & 0 deletions test/Jamfile.v2
Original file line number Diff line number Diff line change
Expand Up @@ -205,3 +205,4 @@ run result_or_fn0r.cpp : : : $(CPP11) ;
run result_and_fn1v.cpp : : : $(CPP11) ;
run result_and_fn1r.cpp : : : $(CPP11) ;
run result_and_eq_fn1v.cpp : : : $(CPP11) ;
run result_and_eq_fn1r.cpp : : : $(CPP11) ;
126 changes: 126 additions & 0 deletions test/result_and_eq_fn1r.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
// Copyright 2017, 2021, 2022 Peter Dimov.
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt

#include <boost/system/result.hpp>
#include <boost/core/lightweight_test.hpp>

using namespace boost::system;

struct X
{
int v_;
};

struct Y
{
int v_;

explicit Y( int v ): v_( v ) {}
Y( X x ): v_( x.v_) {}

Y( Y const& ) = delete;
Y& operator=( Y const& ) = delete;

Y( Y&& r ): v_( r.v_ )
{
r.v_ = 0;
}

Y& operator=( Y&& r )
{
if( &r != this )
{
v_ = r.v_;
r.v_ = 0;
}

return *this;
}
};

struct E
{
};

struct E2
{
E2() {}
E2( E ) {}
};

result<int, E> fi( int x )
{
return 2 * x + 1;
}

result<int, E2> fi2( int )
{
return E2();
}

result<X, E> fy( Y y )
{
return X{ 2 * y.v_ + 1 };
}

result<Y, E2> fy2( Y )
{
return E2();
}

result<int&, E> fri( int& )
{
static int x = 2;
return x;
}

result<int&, E2> fri2( int& )
{
return E2();
}

int main()
{
{
result<int, E2> r( 1 );

r &= fi;
BOOST_TEST( r.has_value() ) && BOOST_TEST_EQ( *r, 3 );

r &= fi2;
BOOST_TEST( r.has_error() );

r &= fi;
BOOST_TEST( r.has_error() );
}

{
result<Y, E2> r( in_place_value, 1 );

r &= fy;
BOOST_TEST( r.has_value() ) && BOOST_TEST_EQ( r->v_, 3 );

r &= fy2;
BOOST_TEST( r.has_error() );

r &= fy;
BOOST_TEST( r.has_error() );
}

{
int x1 = 1;
result<int&, E2> r( x1 );

r &= fri;
BOOST_TEST( r.has_value() ) && BOOST_TEST_EQ( &*r, &*fri( x1 ) );

r &= fri2;
BOOST_TEST( r.has_error() );

r &= fri;
BOOST_TEST( r.has_error() );
}

return boost::report_errors();
}

0 comments on commit d11dd4b

Please sign in to comment.