mirror of
https://github.com/boostorg/utility.git
synced 2025-05-09 15:04:00 +00:00
removed tie() and class tied
[SVN r10938]
This commit is contained in:
parent
75c9dd3be1
commit
55bfeb646f
@ -87,31 +87,6 @@ namespace boost
|
|||||||
const noncopyable& operator=( const noncopyable& );
|
const noncopyable& operator=( const noncopyable& );
|
||||||
}; // noncopyable
|
}; // noncopyable
|
||||||
|
|
||||||
// class tied -------------------------------------------------------//
|
|
||||||
|
|
||||||
// A helper for conveniently assigning the two values from a pair
|
|
||||||
// into separate variables. The idea for this comes from Jaakko J„rvi's
|
|
||||||
// Binder/Lambda Library.
|
|
||||||
|
|
||||||
// Constributed by Jeremy Siek
|
|
||||||
|
|
||||||
template <class A, class B>
|
|
||||||
class tied {
|
|
||||||
public:
|
|
||||||
inline tied(A& a, B& b) : _a(a), _b(b) { }
|
|
||||||
template <class U, class V>
|
|
||||||
inline tied& operator=(const std::pair<U,V>& p) {
|
|
||||||
_a = p.first;
|
|
||||||
_b = p.second;
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
protected:
|
|
||||||
A& _a;
|
|
||||||
B& _b;
|
|
||||||
};
|
|
||||||
|
|
||||||
template <class A, class B>
|
|
||||||
inline tied<A,B> tie(A& a, B& b) { return tied<A,B>(a, b); }
|
|
||||||
|
|
||||||
} // namespace boost
|
} // namespace boost
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user