jimmyfrasche
jimmyfrasche
I use this library so I don't have to worry about the default roles but sometimes I happen to want to add a different role to some markup and noticed...
Update: the current proposal is to permit `return ..., v` to return the zero value for all but the last result, and to return `v` as the last result. The...
A spoiler / content-warning mechanism is used to hide content not all readers may wish to read or at least not yet. In addition to spoilers and content warnings, this...
To create uniformity with the regexp package and to keep from parsing a commonly used pattern each time it's used, it would make a great deal of since to have...
Need at least one example per input mode. Examples need to take up as few lines as possible, but have complete inputs, outputs, and specifications, while still being easily readable....
Add ```go func Drop[K any](int, iter.Seq[K]) iter.Seq[K] func DropWhile[K any](func(K) bool, iter.Seq[K]) iter.Seq[K] func Take[K any](int, iter.Seq[K]) iter.Seq[K] func TakeWhile[K any](func(K) bool, iter.Seq[K]) iter.Seq[K] ``` (and similarly for the `iter.Seq2`...
Add ```go func Compact[E any](iter.Seq[E]) iter.Seq[E] func CompactFunc[E any](iter.Seq[E], func(E, E) bool) iter.Seq[E] ``` (and similarly for the `iter.Seq2` variants) to `x/exp/xiter`. These are the iter equivalent of `slices.Compact{,Func}`. In...