Szikszai Gusztáv
Szikszai Gusztáv
Hi :wave: The `Time` module has been rewritten for the next version, for details check the PR: #526 and the documentation: https://github.com/mint-lang/mint/blob/master/documentation/Core/Time.md In short, all `Time` is without time-zone information,...
The time related changes are still not released, but will be soon in `0.16.0`. These are the functions to get a `Time` in `master`: * [`Time.now`](https://github.com/mint-lang/mint/blob/master/core/source/Time.mint#L92) - returns the current...
Well we reached 1000 stars :wink:
It's something that I wanted to add to Mint but there are bigger issues I need to tackle first. If anybody wants to give this a go I'm open for...
We can do automatic tuple decoding / encoding, no problem :muscle: Supporting `Map` with any keys is more problematic, we have two options here: 1. `Map(a, b)` would be encoded...
> It seems that the Bool literals are being seen as variable names in the pattern match by the compiler? Yes. There are specific cases to allow parsing of full...
> Gotcha, what I think I'm understanding is that you cannot partially match a structure in mint? You are either matching on known values _or_ capturing structure, but never a...
We should investigate using the `` HTML element for this https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
Let's make this as a meta issue for missing completions. I would like to get the requests in this format: - What is the completion that is missing? - What...
So parsing an HTML tag works like this: first it matches the header tag, then it tries to find any child elements (tags, strings, arrays, fragments, HTML expressions, etc...) then...