Nathaniel Cook
                                            Nathaniel Cook
                                        
                                    @pauldix Yes, that is correct. > I'm not sure I understand how positional arguments can be marked as optional, can you clarify that? The order still matters so all optional...
@pauldix Correct, basically we make sure each arg matches up, We first match up positional args. Then we match up named args. Then we check for any missing required args.
Wouldn't z2 be invalid? Since the function is being called with named args won't you be forced to provide an function that uses the same names? This still seems like...
We have started with a simple function for linear interpolation see https://github.com/influxdata/flux/blob/master/stdlib/interpolate/interpolate.flux Public docs are incoming
We have added a first implementation of an interpolation function here https://github.com/influxdata/flux/blob/master/stdlib/interpolate/interpolate.flux It does simple linear interpolation on a regular time interval. We have plans to implement other types of...
This will be possible via this helper function https://github.com/influxdata/platform/issues/139
Offset has been added in https://github.com/influxdata/flux/pull/3580
@chnn Your change looks correct but that we are running into a limitation of the current Flux type system. The plan is to treat duration literals as polymorphic, meaning they...
Now that we have well defined rules for type inference, this can be less of coercion rules and more of numeric literals have a type class of Number but can...