What I want is take a record that has implicit indexes such as:

   a(10 20 30 40)

and return a record with one less arity, stripping off the first value:

   a(20 30 40)

I can get close with:

   {Record.filterInd a(10 20 30 40) fun {$ I X} I > 1 end}

But that returns the value of

  a(2:20 3:30 4:40)

which is not quite the same thing.

Is there a way to do what I am trying to do?

Thanks,
Chris
_________________________________________________________________________________
mozart-users mailing list                               
[email protected]
http://www.mozart-oz.org/mailman/listinfo/mozart-users

Reply via email to