Am I reading this correctly? The #golang standard library has no built in function to get a slice of keys from a map? You need to iterate every single time and build up an extra list??
@jeremy_list Interesting. No way to get an iterator for jusr keys either?
@jeremy_list that's reasonable. Afaik golang doesn't even have first class iterators in the std 😱
@mauve yes you can get an iterator for keys for both map implementations in the standard library but not one for keys in a certain range other than `.keys().filter(...)`