
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
github.com/jba/btree
This package provides an in-memory B-Tree implementation for Go, useful as an ordered, mutable data structure.
This is a fork of github.com/google/btree with an improved API:
Separate keys and values. With the single type Item
it could be awkward to
construct an item solely for use as a key.
Instead of eight separate methods for iterating, two methods, After
and
Before
, return a Cursor
that can be used to iterate in either
direction:
c := t.Before(k)
for c.Next() {
// First key will be k, if it's present.
fmt.Println(c.Key, c.Value)
}
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.