• Stars
    star
    1,690
  • Rank 27,610 (Top 0.6 %)
  • Language
    C++
  • License
    Boost Software Li...
  • Created over 10 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Your standard library for metaprogramming

Boost.Hana Version Travis status Appveyor status Try it online Gitter Chat

Your standard library for metaprogramming

Overview

#include <boost/hana.hpp>
#include <cassert>
#include <string>
namespace hana = boost::hana;
using namespace hana::literals;

struct Fish { std::string name; };
struct Cat  { std::string name; };
struct Dog  { std::string name; };

int main() {
  // Sequences capable of holding heterogeneous objects, and algorithms
  // to manipulate them.
  auto animals = hana::make_tuple(Fish{"Nemo"}, Cat{"Garfield"}, Dog{"Snoopy"});
  auto names = hana::transform(animals, [](auto a) {
    return a.name;
  });
  assert(hana::reverse(names) == hana::make_tuple("Snoopy", "Garfield", "Nemo"));

  // No compile-time information is lost: even if `animals` can't be a
  // constant expression because it contains strings, its length is constexpr.
  static_assert(hana::length(animals) == 3u, "");

  // Computations on types can be performed with the same syntax as that of
  // normal C++. Believe it or not, everything is done at compile-time.
  auto animal_types = hana::make_tuple(hana::type_c<Fish*>, hana::type_c<Cat&>, hana::type_c<Dog*>);
  auto animal_ptrs = hana::filter(animal_types, [](auto a) {
    return hana::traits::is_pointer(a);
  });
  static_assert(animal_ptrs == hana::make_tuple(hana::type_c<Fish*>, hana::type_c<Dog*>), "");

  // And many other goodies to make your life easier, including:
  // 1. Access to elements in a tuple with a sane syntax.
  static_assert(animal_ptrs[0_c] == hana::type_c<Fish*>, "");
  static_assert(animal_ptrs[1_c] == hana::type_c<Dog*>, "");

  // 2. Unroll loops at compile-time without hassle.
  std::string s;
  hana::int_c<10>.times([&]{ s += "x"; });
  // equivalent to s += "x"; s += "x"; ... s += "x";

  // 3. Easily check whether an expression is valid.
  //    This is usually achieved with complex SFINAE-based tricks.
  auto has_name = hana::is_valid([](auto&& x) -> decltype((void)x.name) { });
  static_assert(has_name(animals[0_c]), "");
  static_assert(!has_name(1), "");
}

Documentation

You can browse the documentation online at http://boostorg.github.io/hana. The documentation covers everything you should need including installing the library, a tutorial explaining what Hana is and how to use it, and an extensive reference section with examples. The remainder of this README is mostly for people that wish to work on the library itself, not for its users.

An offline copy of the documentation can be obtained by checking out the gh-pages branch. To avoid overwriting the current directory, you can clone the gh-pages branch into a subdirectory like doc/html:

git clone http://github.com/boostorg/hana --branch=gh-pages --depth=1 doc/html

After issuing this, doc/html will contain exactly the same static website that is available online. Note that doc/html is automatically ignored by Git so updating the documentation won't pollute your index.

Hacking on Hana

Setting yourself up to work on Hana is easy. First, you will need an installation of CMake. Once this is done, you can cd to the root of the project and setup the build directory:

mkdir build
cmake -S . -B build

Sometimes, you'll want to specify a custom compiler because the system's compiler is too old:

cmake -S . -B build -DCMAKE_CXX_COMPILER=/path/to/compiler

Usually, this will work just fine. However, on some older systems, the standard library and/or compiler provided by default does not support C++14. If this is your case, the wiki has more information about setting you up on different systems.

Normally, Hana tries to find Boost headers if you have them on your system. It's also fine if you don't have them; a few tests requiring the Boost headers will be disabled in that case. However, if you'd like Hana to use a custom installation of Boost, you can specify the path to this custom installation:

cmake -S . -B build -DCMAKE_CXX_COMPILER=/path/to/compiler -DBOOST_ROOT=/path/to/boost

You can now build and run the unit tests and the examples:

cmake --build build --target check

You should be aware that compiling the unit tests is pretty time and RAM consuming, especially the tests for external adapters. This is due to the fact that Hana's unit tests are very thorough, and also that heterogeneous sequences in other libraries tend to have horrible compile-time performance.

There are also optional targets which are enabled only when the required software is available on your computer. For example, generating the documentation requires Doxygen to be installed. An informative message will be printed during the CMake generation step whenever an optional target is disabled. You can install any missing software and then re-run the CMake generation to update the list of available targets.

Tip

You can use the help target to get a list of all the available targets.

If you want to add unit tests or examples, just add a source file in test/ or example/ and then re-run the CMake generation step so the new source file is known to the build system. Let's suppose the relative path from the root of the project to the new source file is path/to/file.cpp. When you re-run the CMake generation step, a new target named path.to.file will be created, and a test of the same name will also be created. Hence,

cmake --build build --target path.to.file # Builds the program associated to path/to/file.cpp
ctest --test-dir build -R path.to.file # Runs the program as a test

Tip for Sublime Text users

If you use the provided hana.sublime-project file, you can select the "[Hana] Build current file" build system. When viewing a file to which a target is associated (like a test or an example), you can then compile it by pressing ⌘B, or compile and then run it using ⇧⌘B.

Project organization

The project is organized in a couple of subdirectories.

  • The benchmark directory contains compile-time and runtime benchmarks to make sure the library is as fast as advertised. The benchmark code is written mostly in the form of eRuby templates. The templates are used to generate C++ files which are then compiled while gathering compilation and execution statistics.
  • The cmake directory contains various CMake modules and other scripts needed by the build system.
  • The doc directory contains configuration files needed to generate the documentation. The doc/html subdirectory is automatically ignored by Git; you can conveniently store a local copy of the documentation by cloning the gh-pages branch into that directory, as explained above.
  • The example directory contains the source code for all the examples of both the tutorial and the reference documentation.
  • The include directory contains the library itself, which is header only.
  • The test directory contains the source code for all the unit tests.

Contributing

Please see CONTRIBUTING.md.

License

Please see LICENSE.md.

Releasing

Releasing is now done exclusively via the Boost release process. There are no separate releases of Hana since the library is now pretty stable.

More Repositories

1

boost

Super-project for modularized Boost
HTML
6,236
star
2

beast

HTTP and WebSocket built on Boost.Asio in C++11
C++
4,355
star
3

compute

A C++ GPU Computing Library for OpenCL
C++
1,487
star
4

pfr

std::tuple like methods for user defined types without any macro or boilerplate code
C++
1,221
star
5

asio

Boost.org asio module
C++
1,212
star
6

hof

Higher-order functions for c++
C++
504
star
7

geometry

Boost.Geometry - Generic Geometry Library | Requires C++14 since Boost 1.75
C++
457
star
8

fiber

userland threads
C++
457
star
9

json

A C++11 library for parsing and serializing JSON to and from a DOM container in memory.
C++
434
star
10

python

Boost.org python module
C++
432
star
11

spirit

Boost.org spirit module
C++
390
star
12

stacktrace

C++ library for storing and printing backtraces.
C++
374
star
13

histogram

Fast multi-dimensional generalized histogram with convenient interface for C++14
C++
315
star
14

math

Boost.org math module
C++
310
star
15

context

Assembly
299
star
16

graph

Boost.org graph module
C++
285
star
17

leaf

Lightweight Error Augmentation Framework
C++
275
star
18

mysql

MySQL C++ client based on Boost.Asio
C++
254
star
19

mp11

C++11 metaprogramming library
C++
239
star
20

build

B2 makes it easy to build C++ projects, everywhere.
C++
224
star
21

redis

An async redis client designed for performance and scalability
C++
223
star
22

cobalt

Coroutines for C++20 & asio
C++
222
star
23

safe_numerics

Replacements to standard numeric types which throw exceptions on errors
C++
208
star
24

thread

Boost.org thread module
C++
198
star
25

multiprecision

Boost.Multiprecision
C++
195
star
26

url

Boost.URL is a library for manipulating Uniform Resource Identifiers (URIs) and Locators (URLs).
C++
186
star
27

test

The reference C++ unit testing framework (TDD, xUnit, C++03/11/14/17)
C++
178
star
28

gil

Boost.GIL - Generic Image Library | Requires C++14 since Boost 1.80
C++
178
star
29

log

Boost Logging library
C++
173
star
30

nowide

Boost.Nowide - Standard library functions with UTF-8 API on Windows
C++
171
star
31

filesystem

Boost.org filesystem module
C++
158
star
32

core

Boost Core Utilities
C++
133
star
33

interprocess

Boost.org interprocess module
C++
132
star
34

callable_traits

modern C++ type traits and metafunctions for callable types
C++
129
star
35

coroutine2

Boost.Coroutine2
C++
127
star
36

lockfree

Boost.Lockfree
C++
120
star
37

serialization

Boost.org serialization module
C++
119
star
38

process

Boost Process
C++
117
star
39

wiki

Boost Wiki
115
star
40

algorithm

Boost.org algorithm module
C++
112
star
41

ublas

Boost.uBlas
C++
108
star
42

smart_ptr

Boost.org smart_ptr module
C++
108
star
43

yap

A C++14-and-later expression template library
C++
107
star
44

container

STL-like containers from Boost
C++
101
star
45

program_options

Boost.org program_options module
C++
92
star
46

preprocessor

Boost.org preprocessor module
C++
91
star
47

cmake

CMake support infrastructure Boost submodule
CMake
87
star
48

uuid

Boost.org uuid module
C++
84
star
49

regex

Boost.org regex module
C++
84
star
50

qvm

Boost Quaternions, Vectors, Matrices library
C++
80
star
51

coroutine

Boost.Coroutine
C++
79
star
52

signals2

Boost.org signals2 module
C++
74
star
53

config

Boost.org config module
C++
72
star
54

stl_interfaces

A C++14 and later CRTP template for defining iterators
C++
69
star
55

describe

A C++14 reflection library
C++
67
star
56

variant2

A never-valueless, strong guarantee implementation of std::variant
C++
66
star
57

date_time

Boost.org date_time module
C++
65
star
58

poly_collection

Fast containers of polymorphic objects.
C++
63
star
59

unordered

Boost.org unordered module
C++
62
star
60

static_string

A fixed capacity dynamically sized string
C++
62
star
61

type_traits

Boost.org type_traits module
C++
61
star
62

winapi

Windows API declarations without <windows.h>, for internal Boost use.
C++
58
star
63

atomic

Boost.Atomic
C++
57
star
64

mpi

Boost.org mpi module
C++
56
star
65

property_tree

Boost.org property_tree module
C++
56
star
66

intrusive

Boost.org intrusive module
C++
54
star
67

circular_buffer

Boost.org circular_buffer module
C++
53
star
68

sort

Boost.Sort
C++
50
star
69

optional

Boost.org optional module
C++
50
star
70

polygon

Boost.org polygon module
C++
48
star
71

fusion

Boost.org fusion module
C++
47
star
72

utility

Boost.org utility module
C++
47
star
73

variant

Boost.org variant module
C++
45
star
74

endian

Boost Endian library
C++
45
star
75

odeint

Boost.odeint
C++
44
star
76

range

Boost.org range module
C++
43
star
77

mpl

Boost.org mpl module
C++
43
star
78

predef

Boost.Predef (a Boost C++ Library)
C
43
star
79

iostreams

Boost.org iostreams module
C++
43
star
80

metaparse

A library for generating compile time parsers parsing embedded DSL code as part of the C++ compilation process
C++
42
star
81

multi_index

Boost.org multi_index module
C++
41
star
82

outcome

Provides very lightweight outcome<T> and result<T> (Boost edition)
C++
40
star
83

contract

Contract programming for C++
C++
39
star
84

pool

Boost.org pool module
C++
37
star
85

dynamic_bitset

Boost.org dynamic_bitset module
C++
36
star
86

system

Boost.org system module
C++
35
star
87

random

Boost.org random module
C++
34
star
88

assert

Boost.Assert
C++
32
star
89

container_hash

Generic hash function for STL style unordered containers
C++
32
star
90

any

Boost.org any module
C++
32
star
91

locale

Boost.Locale
C++
31
star
92

msm

Boost.org msm module
C++
30
star
93

phoenix

Boost.org phoenix module
C++
28
star
94

units

Boost.org units module
C++
28
star
95

bind

Boost.org bind module
C++
26
star
96

charconv

C++11 compatible charconv
C++
26
star
97

format

Boost.org format module
C++
25
star
98

multi_array

Boost.org multi_array module
C++
25
star
99

lexical_cast

General literal text conversions, such as an int represented as a string, or vice versa
C++
25
star
100

website

The boost website.
HTML
24
star