Type Alias lrp::Table

source ·
pub type Table<T> = Map<T, Set<T>>;
Expand description

Terms table. in FIRST: A = a . . . . -> {A: a} A = a . | b . -> {A: a, b} A = B . . . . -> {A: FIRST(B)}

in FOLLOW: A = . . . T a -> {T: a} A = . . . T B -> {T: FIRST(B)} A = . . . . T -> {T: FOLLOW(A)}

Aliased Type§

struct Table<T> { /* private fields */ }