(&self, name: &str)
| 196 | /// Return `true` when any binding for the named action is released this frame. |
| 197 | #[inline] |
| 198 | pub fn released(&self, name: &str) -> bool { |
| 199 | self.released_hash(action_hash(name)) |
| 200 | } |
| 201 | |
| 202 | /// Return `true` while any binding for the hashed action is held. |
| 203 | #[inline] |
nothing calls this directly
no test coverage detected