util/TemplateString: no indent after namespace
This commit is contained in:
parent
79fd6143ec
commit
0dda4c06b1
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2015-2016 Max Kellermann <max.kellermann@gmail.com>
|
* Copyright 2015-2020 Max Kellermann <max.kellermann@gmail.com>
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions
|
* modification, are permitted provided that the following conditions
|
||||||
@ -33,94 +33,96 @@
|
|||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
|
|
||||||
namespace TemplateString {
|
namespace TemplateString {
|
||||||
/**
|
|
||||||
* Construct a null-terminated string from a list of chars.
|
|
||||||
*/
|
|
||||||
template<char... _value>
|
|
||||||
struct Construct {
|
|
||||||
static constexpr char value[] = {_value..., 0};
|
|
||||||
static constexpr size_t size = sizeof...(_value);
|
|
||||||
};
|
|
||||||
|
|
||||||
template<char... _value>
|
/**
|
||||||
constexpr char Construct<_value...>::value[];
|
* Construct a null-terminated string from a list of chars.
|
||||||
|
*/
|
||||||
|
template<char... _value>
|
||||||
|
struct Construct {
|
||||||
|
static constexpr char value[] = {_value..., 0};
|
||||||
|
static constexpr size_t size = sizeof...(_value);
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
template<char... _value>
|
||||||
* An empty string.
|
constexpr char Construct<_value...>::value[];
|
||||||
*/
|
|
||||||
struct Empty : Construct<> {};
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A string consisting of a single character.
|
* An empty string.
|
||||||
*/
|
*/
|
||||||
template<char ch>
|
struct Empty : Construct<> {};
|
||||||
struct CharAsString : Construct<ch> {};
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Invoke #F, pass all characters in #src from #i to #length
|
* A string consisting of a single character.
|
||||||
* as variadic arguments.
|
*/
|
||||||
*/
|
template<char ch>
|
||||||
template<template<char...> class F,
|
struct CharAsString : Construct<ch> {};
|
||||||
const char *src, size_t length, size_t i,
|
|
||||||
char... _value>
|
|
||||||
struct VariadicChars : VariadicChars<F, src, length - 1, i + 1, _value..., src[i]> {
|
|
||||||
static_assert(length > 0, "Wrong length");
|
|
||||||
};
|
|
||||||
|
|
||||||
template<template<char...> class F,
|
/**
|
||||||
const char *src, size_t length,
|
* Invoke #F, pass all characters in #src from #i to #length
|
||||||
char... _value>
|
* as variadic arguments.
|
||||||
struct VariadicChars<F, src, 0, length, _value...> : F<_value...> {};
|
*/
|
||||||
|
template<template<char...> class F,
|
||||||
|
const char *src, size_t length, size_t i,
|
||||||
|
char... _value>
|
||||||
|
struct VariadicChars : VariadicChars<F, src, length - 1, i + 1, _value..., src[i]> {
|
||||||
|
static_assert(length > 0, "Wrong length");
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
template<template<char...> class F,
|
||||||
* Like #VariadicChars, but pass an additional argument to #F.
|
const char *src, size_t length,
|
||||||
*/
|
char... _value>
|
||||||
template<template<typename Arg, char...> class F, typename Arg,
|
struct VariadicChars<F, src, 0, length, _value...> : F<_value...> {};
|
||||||
const char *src, size_t length, size_t i,
|
|
||||||
char... _value>
|
|
||||||
struct VariadicChars1 : VariadicChars1<F, Arg,
|
|
||||||
src, length - 1, i + 1, _value..., src[i]> {
|
|
||||||
static_assert(length > 0, "Wrong length");
|
|
||||||
};
|
|
||||||
|
|
||||||
template<template<typename Arg, char...> class F, typename Arg,
|
/**
|
||||||
const char *src, size_t length,
|
* Like #VariadicChars, but pass an additional argument to #F.
|
||||||
char... _value>
|
*/
|
||||||
struct VariadicChars1<F, Arg, src, 0, length, _value...> : F<Arg, _value...> {};
|
template<template<typename Arg, char...> class F, typename Arg,
|
||||||
|
const char *src, size_t length, size_t i,
|
||||||
|
char... _value>
|
||||||
|
struct VariadicChars1 : VariadicChars1<F, Arg,
|
||||||
|
src, length - 1, i + 1, _value..., src[i]> {
|
||||||
|
static_assert(length > 0, "Wrong length");
|
||||||
|
};
|
||||||
|
|
||||||
template<const char *src, size_t length, char... value>
|
template<template<typename Arg, char...> class F, typename Arg,
|
||||||
struct _BuildString : VariadicChars<Construct, src, length, 0,
|
const char *src, size_t length,
|
||||||
value...> {};
|
char... _value>
|
||||||
|
struct VariadicChars1<F, Arg, src, 0, length, _value...> : F<Arg, _value...> {};
|
||||||
|
|
||||||
template<char ch, typename S>
|
template<const char *src, size_t length, char... value>
|
||||||
struct InsertBefore : _BuildString<S::value, S::size, ch> {};
|
struct _BuildString : VariadicChars<Construct, src, length, 0,
|
||||||
|
value...> {};
|
||||||
|
|
||||||
/**
|
template<char ch, typename S>
|
||||||
* Concatenate several strings.
|
struct InsertBefore : _BuildString<S::value, S::size, ch> {};
|
||||||
*/
|
|
||||||
template<typename... Args>
|
|
||||||
struct Concat;
|
|
||||||
|
|
||||||
template<typename First, typename Second, typename... Args>
|
/**
|
||||||
struct _Concat : Concat<Concat<First, Second>, Args...> {};
|
* Concatenate several strings.
|
||||||
|
*/
|
||||||
|
template<typename... Args>
|
||||||
|
struct Concat;
|
||||||
|
|
||||||
template<typename... Args>
|
template<typename First, typename Second, typename... Args>
|
||||||
struct Concat : _Concat<Args...> {};
|
struct _Concat : Concat<Concat<First, Second>, Args...> {};
|
||||||
|
|
||||||
template<typename Second, char... _value>
|
template<typename... Args>
|
||||||
struct _Concat2 : _BuildString<Second::value, Second::size,
|
struct Concat : _Concat<Args...> {};
|
||||||
_value...> {};
|
|
||||||
|
|
||||||
template<typename First, typename Second>
|
template<typename Second, char... _value>
|
||||||
struct Concat<First, Second>
|
struct _Concat2 : _BuildString<Second::value, Second::size,
|
||||||
:VariadicChars1<_Concat2, Second,
|
_value...> {};
|
||||||
First::value, First::size, 0> {};
|
|
||||||
|
|
||||||
template<typename First>
|
template<typename First, typename Second>
|
||||||
struct Concat<First> : First {};
|
struct Concat<First, Second>
|
||||||
|
:VariadicChars1<_Concat2, Second,
|
||||||
|
First::value, First::size, 0> {};
|
||||||
|
|
||||||
template<>
|
template<typename First>
|
||||||
struct Concat<> : Empty {};
|
struct Concat<First> : First {};
|
||||||
}
|
|
||||||
|
template<>
|
||||||
|
struct Concat<> : Empty {};
|
||||||
|
|
||||||
|
} // namespace TemplateString
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user