numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
Loading...
Searching...
No Matches
gray_code.h File Reference

Definition of functions for gray code. More...

#include <cstdint>
+ Include dependency graph for gray_code.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  num_collect
 Namespace of num_collect source codes.
 
namespace  num_collect::util
 Namespace of utilities.
 

Functions

constexpr auto num_collect::util::binary_to_gray_code (std::uint32_t binary) -> std::uint32_t
 Convert an integer from binary to Gray code [30].
 
constexpr auto num_collect::util::binary_to_gray_code (std::uint64_t binary) -> std::uint64_t
 Convert an integer from binary to Gray code [30].
 
constexpr auto num_collect::util::gray_code_to_binary (std::uint32_t gray_code) -> std::uint32_t
 Convert an integer from Gray code to binary [30].
 
constexpr auto num_collect::util::gray_code_to_binary (std::uint64_t gray_code) -> std::uint64_t
 Convert an integer from Gray code to binary [30].
 

Detailed Description

Definition of functions for gray code.

Definition in file gray_code.h.