Generic Usenet Account
unread,Oct 25, 2011, 1:38:40 PM10/25/11You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Hello,
Are the following ABNF snippets equivalent? If yes, which one is more
preferable?
Option 1
========
A = B [ ( "&" / "|" ) A ]
B = C / "(" C ")"
C = ...
Option 2
========
A = B * (( "&" / "|" ) B )
B = C / "(" C ")"
C = ...
In my opinion they are equivalent and I prefer Option 2.
Thanks,
Song