added getter for field count in struct MoveBuffer
This commit is contained in:
@@ -14,9 +14,14 @@ impl MoveBuffer {
|
||||
count: 0
|
||||
};
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add(&mut self, bitmove: BitMove) {
|
||||
self.buffer[self.count] = bitmove;
|
||||
self.count += 1;
|
||||
}
|
||||
#[inline(always)]
|
||||
pub fn count(&self) -> usize{
|
||||
return self.count;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user