Results 9 issues of Cameron Joannidis

Creating this issue to discuss the detailed design of `Dataset[A]` (and potentially `DataStream[A]`). As discussed in the meeting with John, I think its worth thinking through what this API would...

help wanted

Like the DatasetSyntax example, we will need syntax for `Numeric`s Think basic operators (+, -, /, *) etc

This should demonstrate how the industry standard example "word count" would look with our scalaz-analytics API. For reference: Spark: https://github.com/databricks/learning-spark/blob/master/mini-complete-example/src/main/scala/com/oreilly/learningsparkexamples/mini/scala/WordCount.scala https://github.com/apache/spark/blob/master/examples/src/main/scala/org/apache/spark/examples/streaming/HdfsWordCount.scala Flink: https://github.com/apache/flink/blob/master/flink-examples/flink-examples-batch/src/main/scala/org/apache/flink/examples/scala/wordcount/WordCount.scala

We need to provide a set of `Type`'s that can be used in constructing computation descriptions in the `StdLib`. As an initial list might be: - Int - Long -...

We need to add the Arrow Ops to the `=>:` and `StdLib` traits as mentioned in the design session. `=>:` is a Strong/Choice Profunctor. The best links I've found to...

This ticket is to capture the types of computations we want to be able to express with this library. I think it's probably best to have this as a discussion...

We need to flesh out the `setops` trait in the design sketch. This ticket will need to pay close attention to the progress of #4 since the approach we take...

Converting a type to another type can affect the precision of the value. e.g. ``` Grams(5).in(Kilograms) // squants.mass.Mass = 0.005 kg Grams(5.1).in(Kilograms) // squants.mass.Mass = 0.0050999999999999995 kg (rather than 0.0051...

2.x

When you deal with money, there is a method ``` def /(that: BigDecimal): Money = new Money(amount / that)(currency) ``` that allows you to divide money by an arbitrarily large...

2.x