func()

in pkg/utils/threadsafemultimap.go [91:100]


func (m *threadsafeMultiMap) ContainsPair(key interface{}, value interface{}) bool {
	m.RLock()
	defer m.RUnlock()

	if m.v[key] != nil && m.v[key].Contains(value) {
		return true
	}

	return false
}