Bless.Util.Deque.PeekEnd C# (CSharp) Method

PeekEnd() public method

Peek the object at the end of the queue
public PeekEnd ( ) : T
return T
	public T PeekEnd()
	{
		T o = default(T);

		if (list.Last != null)
			o = list.Last.data;

		return o;
	}