Archived
1
0
Fork 0

Fixed stack duplicate behaviour

This commit is contained in:
Julien Dessaux 2022-08-20 09:25:57 +02:00
parent e431feb6cb
commit 544a3f3763
Signed by: adyxax
GPG key ID: F92E51B86E07177E

View file

@ -46,8 +46,8 @@ func Clear*(s: var Stack) =
s.height = 0
func Duplicate*(s: var Stack) =
if s.height > 0:
s.Push(s.data[s.height-1])
let v = s.Pop()
s.PushVector((v, v));
func Swap*(s: var Stack) =
let a = s.Pop