From ed3e9a468c9a3ed0d1c564a74dbdfb4cecd9bf79 Mon Sep 17 00:00:00 2001 From: hyzboy Date: Wed, 20 Mar 2024 23:22:30 +0800 Subject: [PATCH] added more types in SeriesPool --- inc/hgl/type/SeriesPool.h | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/inc/hgl/type/SeriesPool.h b/inc/hgl/type/SeriesPool.h index 9c8eb75..d480e6c 100644 --- a/inc/hgl/type/SeriesPool.h +++ b/inc/hgl/type/SeriesPool.h @@ -66,10 +66,21 @@ namespace hgl return(true); } };//template class SeriesPool + + using SeriesSize=SeriesPool; - using SeriesInt=SeriesPool; + using SeriesInt =SeriesPool; using SeriesUInt=SeriesPool; - using SeriesInt64=SeriesPool; - using SeriesUInt64=SeriesPool; + using SeriesI8 =SeriesPool; + using SeriesU8 =SeriesPool; + + using SeriesI16 =SeriesPool; + using SeriesU16 =SeriesPool; + + using SeriesI32 =SeriesPool; + using SeriesU32 =SeriesPool; + + using SeriesI64 =SeriesPool; + using SeriesU64 =SeriesPool; }//namespace hgl