From: Roger Peppe Date: Tue, 9 Nov 2010 16:58:23 +0000 (-0800) Subject: container/list: make Remove return Value of removed element. X-Git-Tag: weekly.2010-11-10~7 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e9afb9d399125e3f8bcda135913905ff3a3a6b5e;p=gostls13.git container/list: make Remove return Value of removed element. When it is known that there is already at least one element in the list, it is awkwardly verbose to use three lines and an extra variable declaration to remove the first or last item (a common case), rather than use a simple expression. a stack: stk.PushFront(x) x = stk.Front().Remove().(T) vs. stk.PushFront(x) e := stk.Front() e.Remove() x = e.Value.(T) [An alternative CL might be to add PopFront and PopBack methods]. R=gri CC=golang-dev https://golang.org/cl/3000041 --- diff --git a/src/pkg/container/list/list.go b/src/pkg/container/list/list.go index ddc8611819..c1ebcddaa7 100644 --- a/src/pkg/container/list/list.go +++ b/src/pkg/container/list/list.go @@ -54,10 +54,12 @@ func (l *List) Front() *Element { return l.front } // Back returns the last element in the list. func (l *List) Back() *Element { return l.back } -// Remove removes the element from the list. -func (l *List) Remove(e *Element) { +// Remove removes the element from the list +// and returns its Value. +func (l *List) Remove(e *Element) interface{} { l.remove(e) e.list = nil // do what remove does not + return e.Value } // remove the element from the list, but do not clear the Element's list field.