Matthias Beyer

Results 520 comments of Matthias Beyer

> I suggest to add a high level `parse` method so you can parse a cron expression using something like this: [...] It might be also worth adding a serde...

That error is unrelated. Please rebase once #395 is merged.

Thanks for providing feedback, it is highly appreciated! I will fill my ideas into some issues!

I'd like to see this reopened as there are quite a few dependabot updates which are not even merged... It seems there's still need for maintainers here, is there? ---...

> ## Function calls > > ``` > f(a, b) > ``` > > alternatively, the following syntax is equivalent to the above (but makes chaining function calls easier in...

Ah, cool. Well that syntax is really confusing, but I see the value (as in the last example you provided).

Well, I really like function chaining syntax in Rust, but I am not so sure whether it actually makes sense in a functional language. FWIW, I find the composing in...

> Interestingly, Tao's -> operator is pretty much identical to F#'s pipeline operator [...] so it seems like infix function calls have a pretty strong precedence among functional languages. Hm,...

Ah and one bit that also just came up: What's the difference between `def` and `fn`? Especially because they seem to be [used both to define functions](https://github.com/zesterer/tao/blob/master/syntax/examples/sample.tao#L62)?