Kagome
Polkadot Runtime Engine in C++17
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
Kagome
Consensus
core
Development guide
Guide for `outcome::result<T>`
Rules
Terms
Tooling
Overview
Your first Kagome chain
Runing Kagome in docker container
Start private Kagome network
Namespaces
Classes
Files
File List
core
api
application
assets
authority_discovery
authorship
blockchain
clock
common
consensus
containers
crypto
filesystem
host_api
injector
log
macro
metrics
network
offchain
outcome
parachain
primitives
account.hpp
apply_result.hpp
arithmetic_error.cpp
arithmetic_error.hpp
author_api_primitives.hpp
authority.hpp
authority_discovery_id.hpp
babe_configuration.hpp
block.hpp
block_data.hpp
block_header.cpp
block_header.hpp
block_id.hpp
check_inherents_result.hpp
code_substitutes.hpp
common.hpp
compact_integer.hpp
digest.hpp
event_types.hpp
extrinsic.hpp
inherent_data.cpp
inherent_data.hpp
justification.hpp
math.hpp
opaque_metadata.hpp
parachain_host.hpp
rpc_methods.hpp
runtime_dispatch_info.hpp
scheduled_change.hpp
session_key.hpp
ss58_codec.cpp
ss58_codec.hpp
strobe.hpp
token_error.cpp
token_error.hpp
transaction.hpp
transaction_validity.cpp
transaction_validity.hpp
transcript.hpp
version.cpp
version.hpp
runtime
scale
storage
subscription
telemetry
transaction_pool
utils
docs
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
math.hpp
Go to the documentation of this file.
1
6
#ifndef KAGOME_MATH_HPP
7
#define KAGOME_MATH_HPP
8
9
#include <type_traits>
10
11
namespace
kagome::math
{
12
20
template
<
size_t
X,
typename
T>
21
inline
constexpr T
roundUp
(T t) {
22
static_assert((X & (X - 1)) == 0,
"Must be POW 2!"
);
23
static_assert(X != 0,
"Must not be 0!"
);
24
return
(t + (X - 1)) & ~(X - 1);
25
}
26
27
}
// namespace kagome::math
28
29
#endif // KAGOME_MATH_HPP
kagome::math::roundUp
constexpr T roundUp(T t)
Definition:
math.hpp:21
kagome::math
Definition:
math.hpp:11
core
primitives
math.hpp
Generated by
1.8.11