commit 2025-10-19 16:39 edit a bit in ZCppMain/ZMainHead.H
This commit is contained in:
@ -4429,7 +4429,7 @@ namespace ZNsMain
|
|||||||
|
|
||||||
template<typename TFunctor> void IterThis (TFunctor AO_Functor)
|
template<typename TFunctor> void IterThis (TFunctor AO_Functor)
|
||||||
{
|
{
|
||||||
if(TypeSelf::ZEUseIteHead<1) return;
|
if(TypeSelf::ZEUseIteHead<1){return;}
|
||||||
|
|
||||||
TypeLink* VP_NowLink = &GetHead() ;
|
TypeLink* VP_NowLink = &GetHead() ;
|
||||||
TypeSize VL_LinkSize = size() + 1 ;
|
TypeSize VL_LinkSize = size() + 1 ;
|
||||||
@ -4446,7 +4446,7 @@ namespace ZNsMain
|
|||||||
template<typename TFunctor> void IterThis (TFunctor AO_Functor)*/
|
template<typename TFunctor> void IterThis (TFunctor AO_Functor)*/
|
||||||
template<typename TFunctor> void IterThisRev(TFunctor AO_Functor)
|
template<typename TFunctor> void IterThisRev(TFunctor AO_Functor)
|
||||||
{
|
{
|
||||||
if(TypeSelf::ZEUseIteTail<1) return;
|
if(TypeSelf::ZEUseIteTail<1){return;}
|
||||||
|
|
||||||
TypeLink* VP_NowLink = &GetTail() ;
|
TypeLink* VP_NowLink = &GetTail() ;
|
||||||
TypeSize VL_LinkSize= size() + 1 ;
|
TypeSize VL_LinkSize= size() + 1 ;
|
||||||
@ -4463,7 +4463,7 @@ namespace ZNsMain
|
|||||||
template<typename TFunctor> void IterThisRev(TFunctor AO_Functor)*/
|
template<typename TFunctor> void IterThisRev(TFunctor AO_Functor)*/
|
||||||
template<typename TFunctor> void IterHead (TFunctor AO_Functor)
|
template<typename TFunctor> void IterHead (TFunctor AO_Functor)
|
||||||
{
|
{
|
||||||
if(TypeSelf::ZEUseIteHead<1) return;
|
if(TypeSelf::ZEUseIteHead<1){return;}
|
||||||
|
|
||||||
TypeLink* VP_NowLink = &this->GetNext();
|
TypeLink* VP_NowLink = &this->GetNext();
|
||||||
TypeSize VL_LinkSize = size() ;
|
TypeSize VL_LinkSize = size() ;
|
||||||
@ -4480,7 +4480,7 @@ namespace ZNsMain
|
|||||||
template<typename TFunctor> void IterHead (TFunctor AO_Functor)*/
|
template<typename TFunctor> void IterHead (TFunctor AO_Functor)*/
|
||||||
template<typename TFunctor> void IterTail (TFunctor AO_Functor)
|
template<typename TFunctor> void IterTail (TFunctor AO_Functor)
|
||||||
{
|
{
|
||||||
if(TypeSelf::ZEUseIteTail<1) return ;
|
if(TypeSelf::ZEUseIteTail<1){return;}
|
||||||
|
|
||||||
TypeLinkC* VP_NowLink = &this->GetTail();
|
TypeLinkC* VP_NowLink = &this->GetTail();
|
||||||
TypeSize VL_LinkSize= size() ;
|
TypeSize VL_LinkSize= size() ;
|
||||||
|
Reference in New Issue
Block a user