Returns whether none of the face flag bits is set, i.e. it does not correspond to any face
(&self)
| 924 | impl GridBoundaryFaceFlags { |
| 925 | /// Returns whether none of the face flag bits is set, i.e. it does not correspond to any face |
| 926 | pub fn is_empty(&self) -> bool { |
| 927 | self.0.is_empty() |
| 928 | } |
| 929 | |
| 930 | /// Classifies the cell with the given index to zero or more boundary faces of the grid |
| 931 | #[rustfmt::skip] |
no outgoing calls
no test coverage detected