FastQuant.StackFillSet.Peek C# (CSharp) Method

Peek() public method

public Peek ( ) : FastQuant.Fill
return FastQuant.Fill
        public Fill Peek() => this.stack.Count != 0 ? this.stack.Peek() : null;
    }