prime/include/rstl/pair.hpp
Luke Street c8f194b18c CScriptSpecialFunction: More matches
Former-commit-id: fdbd70eea10e9eaa15da8b666a94c6f0797eb350
2022-10-02 18:27:13 -04:00

19 lines
296 B
C++

#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) {}
L first;
R second;
};
} // namespace rstl
#endif