Uses of Interface
components.map.Map
Packages that use Map
Package
Description
Provides the
Map
family interfaces and implementing classes.Provides the
Program
family interfaces and implementing classes.-
Uses of Map in components.map
Classes in components.map that implement MapModifier and TypeClassDescriptionclass
Map1L<K,
V> Map
represented as ajava.util.Map
with implementations of primary methods.class
Map2<K,
V> Map
represented as aQueue
of pairs with implementations of primary methods.class
Map3<K,
V> Map
represented as aBinaryTree
(maintained as a binary search tree) of pairs with implementations of primary methods.class
Map4<K,
V> Map
represented as a hash table usingMap
s for the buckets, with implementations of primary methods.class
MapSecondary<K,
V> Layered implementations of secondary methods forMap
.Methods in components.map that return MapModifier and TypeMethodDescriptionMap1L.newInstance()
Map2.newInstance()
Map3.newInstance()
Map4.newInstance()
Methods in components.map with parameters of type MapModifier and TypeMethodDescriptionvoid
Map.combineWith
(Map<K, V> m) Combinesm
withthis
.void
MapSecondary.combineWith
(Map<K, V> m) boolean
Map.sharesKeyWith
(Map<K, V> m) Reports whetherthis
andm
have any keys in common.boolean
MapSecondary.sharesKeyWith
(Map<K, V> m) final void
Map1L.transferFrom
(Map<K, V> source) final void
Map2.transferFrom
(Map<K, V> source) final void
Map3.transferFrom
(Map<K, V> source) final void
Map4.transferFrom
(Map<K, V> source) -
Uses of Map in components.program
Methods in components.program that return MapModifier and TypeMethodDescriptionProgram1.newContext()
ProgramKernel.newContext()
Creates and returns an emptyMap<String, Statement>
of the dynamic type needed inswapContext
.Methods in components.program with parameters of type MapModifier and TypeMethodDescriptionfinal void
Program1.swapContext
(Map<String, Statement> c) void
ProgramKernel.swapContext
(Map<String, Statement> c) Exchanges the context ofthis
withc
;c
must have the dynamic type returned bynewContext
.