$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] type traits extension: progress status
From: Frédéric Bron (frederic.bron_at_[hidden])
Date: 2011-01-30 08:58:39
I have just added one missing unary operator: complement (~) so that
the current list of supported operators (36) is now:
* 28 binary operators:
. ==, !=, <, <=, >, >=,
. +, -, *, /, %, +=, -=, *=, /=, %=,
. &, |, ^, &=, |=, ^=,
. <<, >>, <<=, >>=,
. &&, ||,
* 6 prefix unary operators:
. !
. ~
. -, +
. --, ++
* 2 postfix unary operators:
. --, ++
Here are the links to the updated code and documentation:
* http://www.boostpro.com/vault/index.php?action=downloadfile&filename=type_traits.tar.bz2&directory=Extension&
* http://svn.boost.org/svn/boost/sandbox/type_traits/
Frédéric