| 210 | */ |
| 211 | |
| 212 | forceinline |
| 213 | DFA::Transitions::Transitions(const DFA& d) { |
| 214 | const DFAI* o = static_cast<DFAI*>(d.object()); |
| 215 | if (o != nullptr) { |
| 216 | c_trans = &o->trans[0]; |
| 217 | e_trans = c_trans+o->n_trans; |
| 218 | } else { |
| 219 | c_trans = e_trans = nullptr; |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | forceinline |
| 224 | DFA::Transitions::Transitions(const DFA& d, int n) { |