Files
msgpack-msgpack-c/include/msgpack
David Chappelle 9d4da1ad2e Object conversions return the specific type that was converted.
This allows us to easily make function calls that have parameters that are dependent
upon converting from msgpack objects to concrete types. For example:

    void process_args(std::tuple<int,std::string>& args)
    {
        ...
    }

    process_args(obj.convert(std::make_tuple(100,"hello")))

You can get similar behavior by using obj.as<...>() but its performance is highly
dependent upon the specific compiler and whether or not r-value references are
supported.
2015-05-15 16:21:54 -04:00
..
2015-03-04 22:44:11 +09:00
2014-07-07 16:31:29 +09:00
2015-01-16 00:20:43 +09:00
2014-07-07 16:31:29 +09:00
2014-09-08 12:11:38 -03:00
2015-05-02 11:02:57 +09:00
2015-02-19 17:44:42 +09:00
2014-11-02 20:16:20 +09:00
2014-09-02 18:15:58 +09:00
2014-11-02 20:16:20 +09:00
2014-07-12 00:17:31 +09:00
2014-07-12 00:17:31 +09:00