Guest User

Untitled

a guest
Feb 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. template <typename CAR, typename CDR>
  2. class cons : public std::pair<CAR, CDR>
  3. {
  4. public:
  5. cons(CAR& car, CDR& cdr)
  6. : std::pair<CAR, CDR>(car, cdr)
  7. {}
  8. };
Add Comment
Please, Sign In to add comment