You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fresh list is data structure defined by induction recursion for element types with a decidable equality.
Here's a PR to the Agda standard library with an implementation of fresh lists together with documentation & an updated version of the lexer example using fresh lists: agda/agda-stdlib#878
The text was updated successfully, but these errors were encountered:
Note that it is crucial here to implement the generalised version of fresh lists
that I have PR'd to the stdlib because we want to avoid duplicates not of pairs
of string and token but of strings. So equality is not the freshness relation
we are using here.
Fresh list is data structure defined by induction recursion for element types with a decidable equality.
Here's a PR to the Agda standard library with an implementation of fresh lists together with documentation & an updated version of the lexer example using fresh lists: agda/agda-stdlib#878
The text was updated successfully, but these errors were encountered: