(&self, key: KeyCode)
| 69 | /// Return `true` while the key is held. |
| 70 | #[inline] |
| 71 | pub fn is_key_down(&self, key: KeyCode) -> bool { |
| 72 | self.test(&self.down, key) |
| 73 | } |
| 74 | |
| 75 | /// Return `true` only on the frame the key changes from up to down. |
| 76 | #[inline] |
no test coverage detected