Re: Curious About Interfaces In IFn.java

2017-11-02 Thread Alex Miller
Yes, primitive ^long and ^double hints can result in calling and returning primitives in function invocation to avoid boxing. Otherwise, pretty much everything is typed as Object from the JVM's perspective. On Thursday, November 2, 2017 at 6:11:29 AM UTC-5, Nick Mudge wrote: > > I noticed the in

Curious About Interfaces In IFn.java

2017-11-02 Thread Nick Mudge
I noticed the interface definitions in IFn.java that start out like this: static public interface L{long invokePrim();} static public interface D{double invokePrim();} static public interface OL{long invokePrim(Object arg0);} static public interface OD{double invokePrim(Object arg0);} Obviously t