Tick icon indicating copy to clipboard operation
Tick copied to clipboard

Trait introspection and concept creator for C++11

Results 7 Tick issues
Sort by recently updated
recently updated
newest added

It seems the library was proposed to Boost. What is the current status of that?

Hi I want my tick trait class to have private access to its argument T type. So i need to declare my tick triat class as friend of T. How...

c++ prefers paramter packs as last arguement template class SomeClass { } How do i declare class that takes pack, and uses TICK_REQUIRES in class header to help documnnet constraints...

I'm looking this over to address a problem I have and I have a question. Suppose I've define the is_incrementable as you have in your first example. What I would...

Have you thought of including some basic primitive concepts? like those defined in "Elements of Programming" and similar to what will be in concepts-lite

Nice Library. This pullrequest adds the possibility to use `TICK_MEMBER_REQUIRES` (`_OC`); also for members that are defined outside of the class. Example. ``` cpp #include "tick/requires.h" #include "tick/builder.h" #include TICK_TRAIT(is_incrementable)...