Karl Gaissmaier
Karl Gaissmaier
Administartion -> Administration
Hi, this PR fixes the example which was probably written for an older API. Kind regards, and many thanks for GoLLRB! Charly
Adjusted function names in bash-completion so they don't overwrite each other when both bash-completions for pass and passage are loaded in one session because you might want to use pass...
Hi, I stumbled over this promising `gohcl.EvalContext()` description. It would be really useful for `gohcl` but, not implemented (yet?) and the user of the high-level `gohcl` must go into the...
I would be interested in your opinion on **BART**. A similar algorithm to **ART**, at least the `baseIndex` function, but neither allotment nor path-compression, but popcount based level-compression combined with...
```go func (t *Table[T]) Get(addr netip.Addr) (lpm netip.Prefix, ret T, ok bool) ``` Often it is not only the value that is interesting but also the longest prefix that matched....
```go // ipv4AsUint returns ip as a uint32. func ipv4AsUint(ip netip.Addr) uint32 { bs := ip.As4() return binary.BigEndian.Uint32(bs[:]) } ``` One can argue about whether IPv4-mapped IPv6 addresses should be...
`New() `intercepts a panic in `defer()` of `makeslice` and at least for this reason New() is not inlineable and therefore the slice always escapes to the heap. Currently I work...
Dear users, I have implemented an InsertPersist method in the `persist` branch, and before I go to the trouble of writing the same for `DeletePersist` and ~~UpdatePersist~~ `ModifyPersist`, I'm asking...