Home | Libraries | People | FAQ | More |
boost::proto::lit — A helper function for creating a
proto::literal<>
wrapper.
// In header: <boost/proto/literal.hpp> template<typename T> proto::literal< T & > const lit(T & t); template<typename T> proto::literal< T const & > const lit(T const & t);
Parameters: |
|
||
Returns: |
|
||
Throws: |
Will not throw. | ||
Notes: |
The returned value holds the argument by reference. |