I don't see any operations on linkedliststack that would actually require comparisons but the type bound is: ```go // New nnstantiates a new empty stack func New[T comparable]() *Stack[T] { return &Stack[T]{list: singlylinkedlist.New[T]()} } ```