Advertisement
tinyevil

Untitled

Mar 8th, 2018
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. template<Kind K, template<class>K k>
  2. struct ApplyInt{
  3. using type = k<int>;
  4. };
  5.  
  6. template<class Key, class Value> class HashFunc;
  7.  
  8.  
  9. ApplyInt< template<class>, HashFunc >::type
  10. ==> template<class Value> HashFunc<int, value>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement