TINMAN 3D / REALTIME TERRAIN
Software Development Kit - User Manual

struct MapEntry in Tinman.Core.Collections

Represents a single key/value pair stored in an IMap instance.

struct MapEntry with <TKey>  
  <TValue>  
  implements IEquatable<MapEntry<TKey, TValue>>

Public / Constants

Default

The default value.

public static readonly field Default
type MapEntry<TKey, TValue>

Public / Attributes

Key

The entry key.

public readonly field Key
type TKey

Value

The entry value.

public readonly field Value
type TValue

Public / Constructors

MapEntry

Creates a new instance of MapEntry.

public constructor MapEntry (TKey key, TValue value)
params key The entry key.
  value The entry value.

Public / Methods

Equals

public method Equals (MapEntry<TKey, TValue> other)
type bool
params other