dictionary

package
v1.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 17, 2018 License: Apache-2.0 Imports: 2 Imported by: 23

Documentation

Overview

Package dictionary provides utilities for operating on map-like types.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Entry

type Entry struct {
	K, V interface{}
}

Entry holds a key-value pair.

type I

type I interface {
	Get(key interface{}) (val interface{})
	Set(key, val interface{})
	Lookup(key interface{}) (val interface{}, ok bool)
	Contains(key interface{}) bool
	Delete(key interface{})
	Clear()
	Len() int
	Entries() []Entry
	KeyTy() reflect.Type
	ValTy() reflect.Type
	KeysSorted() []interface{}
}

I is the interface for a dictionary.

func From

func From(o interface{}) I

From returns a dictionary wrapping o. o can be a Provider or a map, otherwise nil is returned.

type Provider

type Provider interface {
	Dictionary() I
}

Provider is the interface implemented by types that provide a dictionary interface.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL