Searched defs:strict_cons (Results 1 – 1 of 1) sorted by relevance
373 struct strict_cons : public boost::noncopyable { struct374 mutable RefCountType refC;375 T head;376 typedef boost::intrusive_ptr<strict_cons> tail_type;377 tail_type tail;378 strict_cons( const T& h, const tail_type& t ) : refC(0), head(h), tail(t) {} in strict_cons() argument