#pragma once #ifndef Convention_Runtime_Generics_Sequence_hpp #define Convention_Runtime_Generics_Sequence_hpp #include"Config.hpp" namespace Convention { namespace Generics { template using Array = std::array; template class Allocator> using Vector = std::vector>; } } #endif Convention_Runtime_Generics_Sequence_hpp