Files
Convention-CPP/Convention/[Runtime]/Generics/Sequence.hpp

21 lines
445 B
C++
Raw Normal View History

2025-06-12 14:59:06 +08:00
#pragma once
#ifndef Convention_Runtime_Generics_Sequence_hpp
#define Convention_Runtime_Generics_Sequence_hpp
#include"Config.hpp"
namespace Convention
{
namespace Generics
{
template<typename Element, size_t size>
using Array = std::array<Element, size>;
template<typename Element, template<typename> class Allocator>
using Vector = std::vector<Element, Allocator<Element>>;
}
}
#endif Convention_Runtime_Generics_Sequence_hpp