Coliru: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Claas (Diskussion | Beiträge) (nD array view) |
Claas (Diskussion | Beiträge) (ext. initializer list) |
||
Zeile 24: | Zeile 24: | ||
* [https://wandbox.org/permlink/8g1RbTkndIeoLcWO Copy one variant to a sub-type], [https://wandbox.org/permlink/Mj2gnOQLE0Qb4Drq alternative] | * [https://wandbox.org/permlink/8g1RbTkndIeoLcWO Copy one variant to a sub-type], [https://wandbox.org/permlink/Mj2gnOQLE0Qb4Drq alternative] | ||
** [https://wandbox.org/permlink/FRmLoitheLqK8Sbb Both directions] | ** [https://wandbox.org/permlink/FRmLoitheLqK8Sbb Both directions] | ||
* [https://wandbox.org/permlink/1EVCg3MZX3PB210c nD array view] | * [https://wandbox.org/permlink/1EVCg3MZX3PB210c nD array view], [https://wandbox.org/permlink/wlwiKD6BH8Loc5JM ext. initializer list] | ||
== String Proxy Puzzle == | == String Proxy Puzzle == | ||
* [https://gcc.godbolt.org/z/3Hcn8H Trial 1] | * [https://gcc.godbolt.org/z/3Hcn8H Trial 1] | ||
* [https://gcc.godbolt.org/z/lhDlAJ Trial 2 (hash)] | * [https://gcc.godbolt.org/z/lhDlAJ Trial 2 (hash)] |
Version vom 29. Mai 2019, 08:11 Uhr
- Variant with hierarchy and partial overloading
- Access enum as constant expression
- enum class casting rules
- Test constexpr with template functor
- Change variable in parameter pack expansion
- Pitfalls of bitset::operator
- non_negative
- one_of, C++14
- Optional automatic determination of template parameter
- Non-const constexpr member function
- make_switch
- constexpr: Use tag dispatching for runtime/compile-time path
- constexpr: Default generated constructors
- Atomic add float
- Unique type for each generated element of class
- Struct designated initializers cppreference
- Hash of variant
- Non-const and const member functions with is_const on *this
- Overloading based on variadic templates for obtaining automatic function overloading. Version that also compiles with GCC., complex solution
- Copy one variant to a sub-type, alternative
- nD array view, ext. initializer list