IrcShark.Extensions.Terminal.History.PreviousAvailable C# (CSharp) Method

PreviousAvailable() public method

Checks if there is a previous item before the current item under the cursor.
public PreviousAvailable ( ) : bool
return bool
        public bool PreviousAvailable()
        {
            if (count == 0 || cursor == tail)
                return false;

            return true;
        }