The heap size, in bytes, of a single state in the transition table.
(&self)
| 1714 | |
| 1715 | /// The heap size, in bytes, of a single state in the transition table. |
| 1716 | fn state_heap_size(&self) -> usize { |
| 1717 | self.num_byte_classes * mem::size_of::<StatePtr>() |
| 1718 | } |
| 1719 | |
| 1720 | /// Like `next`, but uses unchecked access and is therefore unsafe. |
| 1721 | unsafe fn next_unchecked(&self, si: StatePtr, cls: usize) -> StatePtr { |