FastQuant.QueueFillSet.Peek C# (CSharp) 메소드

Peek() 공개 메소드

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