Method | Description | |
---|---|---|
CircularBuffer ( int len ) : System |
循環バッファコンストラクタ。
|
|
GetEnumerator ( ) : IEnumerator |
this.buff の列挙子を返す。
|
|
PushBack ( double x ) : void |
循環バッファの末尾に値を挿入。
|
|
PushFront ( double x ) : void |
循環バッファの先頭に値を挿入。
|
|
Resize ( int length ) : void |
循環バッファの長さを変更する。
|
|
this ( int n ) : double |
循環バッファ内の要素のアクセス。
|
public CircularBuffer ( int len ) : System | ||
len | int | 循環バッファの長さ。 |
return | System |