tlx
Loading...
Searching...
No Matches
string.hpp
Go to the documentation of this file.
1/*******************************************************************************
2 * tlx/string.hpp
3 *
4 * Part of tlx - http://panthema.net/tlx
5 *
6 * Copyright (C) 2017 Timo Bingmann <tb@panthema.net>
7 *
8 * All rights reserved. Published under the Boost Software License, Version 1.0
9 ******************************************************************************/
10
11#ifndef TLX_STRING_HEADER
12#define TLX_STRING_HEADER
13
14//! \defgroup tlx_string String Algorithms
15//! Simple string manipulations
16
17/*[[[perl
18my %exclude = ("tlx/string/appendline.hpp" => 1,
19 "tlx/string/ssprintf_generic.hpp" => 1);
20print "#include <$_>\n"
21 foreach grep {!$exclude{$_}} sort glob("tlx/string/"."*.hpp");
22]]]*/
23#include <tlx/string/base64.hpp>
42#include <tlx/string/join.hpp>
47#include <tlx/string/pad.hpp>
52#include <tlx/string/split.hpp>
60#include <tlx/string/trim.hpp>
63// [[[end]]]
64
65#endif // !TLX_STRING_HEADER
66
67/******************************************************************************/