MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / value

Class value

extern/boost/boost/bind/bind.hpp:97–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

95// value
96
97template<class T> class value
98{
99public:
100
101 value(T const & t): t_(t) {}
102
103 T & get() { return t_; }
104 T const & get() const { return t_; }
105
106 bool operator==(value const & rhs) const
107 {
108 return t_ == rhs.t_;
109 }
110
111private:
112
113 T t_;
114};
115
116// ref_compare for weak_ptr
117

Callers 15

reportMethod · 0.50
evaluateMethod · 0.50
evaluateMethod · 0.50
size_tClass · 0.50
operator()Method · 0.50
ios_flagsClass · 0.50
setfMethod · 0.50
terminalMethod · 0.50
constants.hppFile · 0.50
hyp0F0Function · 0.50
hyp1F0Function · 0.50
eval_expFunction · 0.50

Calls

no outgoing calls

Tested by 3

reportMethod · 0.40
evaluateMethod · 0.40
evaluateMethod · 0.40