1 /*------------------------------------------------------------- -*- linux-c -*- *
3 |------------------------------------------------------------------------------|
4 *------------------------------------------------------------------------------*/
8 * Commonly used primitive types and inline functions.
9 * \author Andrzej Nagórko
18 bool from_string(T
& t
,
21 std::istringstream
iss(s
);
22 return !(iss
>> std::dec
>> t
).fail();