IDictionary<T,U>

Overview

Location

  • Reference:
    • Elements.dll  .NET, .NET Core 6.0, .NET Standard 2.0
    • elements.jar  Cooper
    • Elements.fx  Island, ToffeeV2
    • libElements.fx  Toffee
  • Namespace: RemObjects.Elements.RTL
  • Platforms: .NET, .NET Core 6.0, .NET Standard 2.0, Cooper, Island, Toffee, ToffeeV2
  • Ancestry: IImmutableDictionary<T,U> | IDictionary<T,U>

Properties


Item

 

property Item[aKey: not nullable T]: nullable U read write;

 

U? Item[T! aKey] { get; set; }

 

subscript Item(_ aKey: T) -> U? { get{} set{} }

 

U Item[T aKey] { __get; __set; }

 

Property Item(aKey As T) As U?

Required Methods


Add

 

method Add(Key: not nullable T; Value: nullable U)

 

void Add(T! Key, U? Value)

 

func Add(_ Key: T, _ Value: U?)

 

void Add(T Key, U Value)

 

Sub Add(Key As T, Value As U?)

Parameters:

  • Key:
  • Value:

Remove

 

method Remove(Key: not nullable T): Boolean

 

Boolean Remove(T! Key)

 

func Remove(_ Key: T) -> Boolean

 

Boolean Remove(T Key)

 

Function Remove(Key As T) As Boolean

Parameters:

  • Key:

RemoveAll .NET, .NET Core 6.0, .NET Standard 2.0, Cooper, Island, ToffeeV2

 

method RemoveAll

 

void RemoveAll()

 

func RemoveAll()

 

void RemoveAll()

 

Sub RemoveAll()

RemoveAll RemoveAll() Toffee

 

func RemoveAll(RemoveAll )

Parameters:

  • :