Neil Santos wrote:
One, How do I forward-reference an operator redefinition? GPC complains when I leave out the parameter and result declarations in the actual definition:
Okay; never mind this. I can't figure out how to export an operator overload, anyway, so I've dropped down to units. :P
Since operators are not EP, there's no way to export them with EP syntax. You could use the GPC extension`export Foo = all' which does the same as unit export (i.e., export everything), and still allows for export renaming etc.
One yould think about how to allow operators (and overloaded routines in the future) to be named in `export' clauses. ATM, I don't really have a good idea.
Frank