On 28/12/2011, at 6:53 PM, john skaller wrote:

> 
> Because (&x).a now returns a pointer, the old meaning is restored
> with a new operator
> 
>       (&x).* a == x.a  .. same as (&x)->a in C
> 
> We don't use -> because in Felix it is used for function types:
> 
>       A -> B -> C
> 
> and is right associative instead of the required left associativity.


Latest commit implements operator *. as shown: 

  px *. a

is just a short hand for

  (*px).a


--
john skaller
skal...@users.sourceforge.net





------------------------------------------------------------------------------
Write once. Port to many.
Get the SDK and tools to simplify cross-platform app development. Create 
new or port existing apps to sell to consumers worldwide. Explore the 
Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join
http://p.sf.net/sfu/intel-appdev
_______________________________________________
Felix-language mailing list
Felix-language@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/felix-language

Reply via email to