x
Yes
No
Do you want to visit DriveHQ English website?
Inicio
Características
Precios
Prueba gratuita
Software cliente
Acerca de nosotros
Servidor de archivos
|
Solución de copias de seguridad
|
Servidor FTP
|
Servidor de correo electrónico
|
Alojamiento web
|
Software cliente
Servidor de archivos
Solución de copia de seguridad
Servidor FTP
Servidor de correo electrónico
Alojamiento web
Software cliente
lowest_bit.hpp - Hosted on DriveHQ Cloud IT Platform
Arriba
Subir
Descargar
Compartir
Publicar
Nueva carpeta
Nuevo archivo
Copiar
Cortar
Eliminar
Pegar
Clasificación
Actualizar
Ruta de la carpeta: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\pending\lowest_bit.hpp
Girar
Efecto
Propiedad
Historial
// ------------------------------------- // lowest_bit.hpp // // Position of the lowest bit 'on' // // (C) Copyright Gennaro Prota 2003 - 2004. // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // ------------------------------------------------------ // // $Id: lowest_bit.hpp 41369 2007-11-25 18:07:19Z bemandawes $ #ifndef BOOST_LOWEST_BIT_HPP_GP_20030301 #define BOOST_LOWEST_BIT_HPP_GP_20030301 #include
#include "boost/pending/integer_log2.hpp" namespace boost { template
int lowest_bit(T x) { assert(x >= 1); // PRE // clear all bits on except the rightmost one, // then calculate the logarithm base 2 // return boost::integer_log2
( x - ( x & (x-1) ) ); } } #endif // include guard
lowest_bit.hpp
Dirección de la página
Dirección del archivo
Anterior
14/21
Siguiente
Descargar
( 961 B )
Comments
Total ratings:
0
Average rating:
No clasificado
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.