jonathanmaw

Results 36 comments of jonathanmaw

Hi, I just tried those instructions, and: - A cursor appeared as soon as I exported the vmouse. This seemed good. - When I echoed "100,0,0,0", the cursor didn't move....

Hi, have you had a chance to look at this?

To expand on this a bit: The first step is to familiarise oneself with how keyN works in `groupBy` and `aggregate`. For a list of Antiques, 'source' ``` source |>...

`AggregationCall` and `constructAggregationCall` can be found in `src/Morphir/SDK/Aggregate.elm`. The purpose of "group key" vs. "returned group key" is highlighted in https://github.com/finos/morphir-elm/issues/799#issuecomment-1191714998 the gist of it is that in elm, when...

I created a PR with all my extant work on this at https://github.com/finos/morphir-elm/pull/911

From an example of ``` testTuple : List { ageOfItem : Float } -> (Float, Maybe Float) testTuple antiques = ( antiques |> List.map .ageOfItem |> List.sum , antiques |>...

The christmas bonanza function is a bit more complex than a simple tuple. The key difference is it's an Apply` of a Lambda of a tuple to a source relation,...

The process for inlining this appears to be: Match against `Value.Apply _ ((Value.Lambda _ lambdaArg (Value.Tuple _ relations) ) as lam) sourceValue` and call ``` relations |> List.map (inlineArguments (collectLambdaParams...

Inlining seemed to work for the simple case of ``` testApplyTuple : List { ageOfItem : Float } -> (Float, Maybe Float) testApplyTuple antiques = antiques |> List.map .ageOfItem |>...