jimmyfrasche

Results 7 issues of 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...

jquery
vanillajs

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...

LanguageChange
Proposal
Proposal-Hold
dotdotdot

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...

WHATWG
needs-research
stale

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....

enhancement

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`...

Proposal

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...

Proposal