vega
include
vega
math.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <stdint.h>
4
5
namespace
vega
{
6
namespace
math {
7
int
floori
(
double
x);
8
double
floorf
(
double
x);
9
int
ceili
(
double
x);
10
double
ceilf
(
double
x);
11
bool
isinteger
(
double
x);
12
13
double
frexp10
(
double
arg,
int
* exp);
14
float
frexp10
(
float
arg,
int
* exp);
15
16
unsigned
popcount
(uint64_t x);
17
}
18
}
vega::math::floori
int floori(double x)
vega::math::floorf
double floorf(double x)
vega::math::isinteger
bool isinteger(double x)
vega::math::ceili
int ceili(double x)
vega::math::frexp10
double frexp10(double arg, int *exp)
vega::math::popcount
unsigned popcount(uint64_t x)
vega::math::ceilf
double ceilf(double x)
vega
Definition:
age.h:6
Generated by
1.8.13