func searchMap(omap *omap.Map, keys ...interface{}) {
	for _, key := range keys {
		if value, found := omap.Find(key); found {
			fmt.Printf("\"%v\" is in the omap with value %v\n", key, value)
		} else {
			fmt.Printf("\"%v\" isn't in the omap\n", key)
		}
	}
}