Struct template pointer_has_rebind
boost::intrusive::pointer_has_rebind
 
Synopsis
template<typename Ptr, typename U> 
struct pointer_has_rebind {
  
  template<typename V> 
  struct any {
    
    any(const V &);
  };
  
  template<typename X> 
    static char test(int, typename X::template rebind< U > *);
  template<typename X> static int test(any< int >, void *);
  
  static const bool value;
};
Description
pointer_has_rebind public static functions
- <template<typenameX>staticchartest(int,typenameX::templaterebind<U>*); >
- <template<typenameX>staticinttest(any<int>,void*); >