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

PeekFront() public method

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

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

		return o;
	}