Menu

TTL / News: Recent posts

TTL v1.2.2 released

Minor release. Made some fixes to get it compiled with GCC v3.4.2

Posted by Eugene 2005-04-29

TTL v1.2.2 released

Minor release. Made some fixes to get it working with GCC v3.4.2

Posted by Eugene 2005-04-29

TTL v1.2.1 released

Increased number of parameters in func::function and tup::tuple to 15.
Added func::named_params_function template for creating functors with named parameters.

Posted by Eugene 2004-08-04

TTL v1.2.0

Added the ttl::flg namespace. It contains the flags<> class and flag_mapper<> function templates.

Posted by Eugene 2004-04-06

Minor TTL release v1.1.1

http://tinytl.sourceforge.net/
Made some internal improvements and fixes to the tuple and variant templates.

Posted by Eugene 2004-02-25

TTL v1.1 released

TTL v1.1
http://www.sourceforge.net/projects/tinytl

I. New

New in this release is the tup namespace.
Its semantic is very close to boost::tuples.
The tup namespace contains following templates:
ttl::tup::tuple<>
ttl::tup::get<>
ttl::tup::length<>
ttl::tup::element<>

Usage:
ttl::tup::tuple<int, double> my_tuple;

my_tuple t(1, 2.3);
int n = ttl::tup:get<0>(t);
double x = ttl::tup:get<1>(t);
int l = ttl::tup::length<my_tuple>::value;
assert(l==2);... read more

Posted by Eugene 2004-01-06

TTL v1.0.01 (beta) released

The beta version includes the following templates and more.
typelist<>
function<>
variant<>
signal<>

Posted by Eugene 2003-11-25