Hunter

Results 29 comments of Hunter

This seems to work for me as of today on master. Is this still failing for you?

I've created something like what this issue requests here...https://github.com/hunterpayne/terra Its an entirely different project as it required rewriting most of the source to make it work but enjoy...

Thank you Gary. It should be noted that to make it all work I had to resort to using ClassTags in a couple of places which has drawbacks for native...

Update, I've successfully removed the ClassTag dependency and gotten Scala-JS and Scala-native versions working. Its still a more complex source base to manage but it now has the same platform...

So this approach you are taking has pluses and minuses.  I'm going to assume you looked at Terra (https://github.com/hunterpayne/terra) and I'm going to compare this approach to the one I...

So there are a few classes in Terra that you might want to look at to really see what is going on inside of there. 1) [TerraOps.scala](https://github.com/hunterpayne/terra/blob/master/src/main/scala/org/terra/TerraOps.scala) which is the...

@garyKeorkunian Your general approach seems sound. Investigate Quantity being typed on a Dimension further, its a good idea. The thing I discovered as I was working on Terra was that...

@garyKeorkunian Looks good so far. For extra types to test on maybe consider [sigfigs](https://github.com/hunterpayne/sigfigs) which is a significant digits library for chemistry and engineering.

Hi Gary,   It has been a while.  Here are some comments I hope are helpful from a quick look at your POC.    I would suggest that you should be returning...

For non-commutative operations, I was worried about usages like Long / Double => Long which is likely not what you want. Forcing the numerator to be a Double would probably...