FastQuant.QueueFillSet.Peek C# (CSharp) Method

Peek() public method

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