mirror of
https://github.com/xfarrow/lasd.git
synced 2025-06-05 21:49:14 +02:00
Library 2
This commit is contained in:
@ -10,12 +10,23 @@ StackLst(const LinearContainer<Data>& linear){
|
||||
Push(linear[i]);
|
||||
}
|
||||
}
|
||||
/*
|
||||
PROVARE
|
||||
template <typename Data>
|
||||
StackLst(const LinearContainer<Data>& linear) : List<Data>(linear){
|
||||
return;
|
||||
}
|
||||
*/
|
||||
|
||||
StackLst(const StackLst& stcklist){
|
||||
for(ulong i=stcklist.Size()-1 ; i>=0 ; --i){
|
||||
Push(stcklist[i]);
|
||||
}
|
||||
}
|
||||
/*
|
||||
PROVARE
|
||||
StackLst(const StackLst& stcklist) : List<Data>(stcklist){}
|
||||
*/
|
||||
|
||||
template <typename Data>
|
||||
StackLst<Data>::StackLst(StackLst&& stcklist) noexcept{
|
||||
|
Reference in New Issue
Block a user