mirror of
https://github.com/status-im/status-go.git
synced 2025-02-20 10:48:36 +00:00
* feat_: LogOnPanic linter * fix_: add missing defer LogOnPanic * chore_: make vendor * fix_: tests, address pr comments * fix_: address pr comments
9 lines
237 B
Go
9 lines
237 B
Go
//go:build !purego
|
|
// +build !purego
|
|
|
|
package keyset
|
|
|
|
// Lookup searches for a key in a set of keys, returning its index if
|
|
// found. If the key cannot be found, the number of keys is returned.
|
|
func Lookup(keyset []byte, key []byte) int
|