You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
241 B
Go

2 months ago
package main
// Helper functions for slices, to make them behave more like stacks
func peek[T any](s []T) T {
return s[len(s)-1]
}
func pop[T any](sp *[]T) T {
to_return := (*sp)[len(*sp)-1]
*sp = (*sp)[:len(*sp)-1]
return to_return
}