prime/include/rstl/pair.hpp

19 lines
296 B
C++
Raw Normal View History

#ifndef _RSTL_PAIR_HPP
#define _RSTL_PAIR_HPP
#include "types.h"
namespace rstl {
template < typename L, typename R >
class pair {
public:
inline pair() {}
inline pair(const L& first, const R& second) : first(first), second(second) {}
2022-04-11 22:42:08 +00:00
L first;
R second;
};
} // namespace rstl
#endif