Shea Levy
unread,Aug 30, 2014, 8:52:58 PM8/30/14Sign in to reply to author
Sign in to forward
You 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 ats-lan...@googlegroups.com
Hi all,
Currently, my 'filedes' view is declared:
> absview filedes (fd: int)
Really, though, a valid file descriptor has to be a nat. If I try
> absview filedes (fd: nat)
compliation fails with
> the identifier [nat] is expected to refer to a sort (instead of a subset sort)
and all attempts to spell out a universal like
> absview filedes {n: nat} (fd: int n)
fail to parse. Is it possible to constrain an absview in this way?
~Shea