(&mut self, val: bool)
| 2002 | /// subsequently bypass safety checks in the [`ArrayDataBuilder`]. |
| 2003 | #[inline] |
| 2004 | pub unsafe fn set(&mut self, val: bool) { |
| 2005 | self.0 = val; |
| 2006 | } |
| 2007 | |
| 2008 | /// Returns the value of the flag |
| 2009 | #[inline] |
no outgoing calls