Skip to content

@sora-soft/framework


@sora-soft/framework / ArrayMap

Class: ArrayMap<K, T>

Defined in: packages/framework/src/utility/Utility.ts:189

Extends

  • Map<K, T[]>

Type Parameters

Type Parameter
K
T

Constructors

Constructor

ts
new ArrayMap<K, T>(): ArrayMap<K, T>;

Defined in: packages/framework/src/utility/Utility.ts:190

Returns

ArrayMap<K, T>

Overrides

ts
Map<K, T[]>.constructor

Properties

PropertyModifierTypeInherited fromDefined in
[toStringTag]readonlystringArrayMap.[toStringTag]node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts:137
sizereadonlynumberArrayMap.sizenode_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts:45
[species]readonlyMapConstructorMap.[species]node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts:319

Methods

[iterator]()

ts
iterator: MapIterator<[K, T[]]>;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts:143

Returns an iterable of entries in the map.

Returns

MapIterator<[K, T[]]>

Inherited from

ts
Map.[iterator]

append()

ts
append(k, value): void;

Defined in: packages/framework/src/utility/Utility.ts:194

Parameters

ParameterType
kK
valueT

Returns

void


clear()

ts
clear(): void;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts:20

Returns

void

Inherited from

ts
Map.clear

delete()

ts
delete(key): boolean;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts:24

Parameters

ParameterType
keyK

Returns

boolean

true if an element in the Map existed and has been removed, or false if the element does not exist.

Inherited from

ts
Map.delete

entries()

ts
entries(): MapIterator<[K, T[]]>;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts:148

Returns an iterable of key, value pairs for every entry in the map.

Returns

MapIterator<[K, T[]]>

Inherited from

ts
Map.entries

forEach()

ts
forEach(callbackfn, thisArg?): void;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts:28

Executes a provided function once per each key/value pair in the Map, in insertion order.

Parameters

ParameterType
callbackfn(value, key, map) => void
thisArg?any

Returns

void

Inherited from

ts
Map.forEach

get()

ts
get(key): T[] | undefined;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts:33

Returns a specified element from the Map object. If the value that is associated to the provided key is an object, then you will get a reference to that object and any change made to that object will effectively modify it inside the Map.

Parameters

ParameterType
keyK

Returns

T[] | undefined

Returns the element associated with the specified key. If no element is associated with the specified key, undefined is returned.

Inherited from

ts
Map.get

has()

ts
has(key): boolean;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts:37

Parameters

ParameterType
keyK

Returns

boolean

boolean indicating whether an element with the specified key exists or not.

Inherited from

ts
Map.has

keys()

ts
keys(): MapIterator<K>;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts:153

Returns an iterable of keys in the map

Returns

MapIterator<K>

Inherited from

ts
Map.keys

remove()

ts
remove(k, value): void;

Defined in: packages/framework/src/utility/Utility.ts:207

Parameters

ParameterType
kK
valueT

Returns

void


set()

ts
set(key, value): this;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts:41

Adds a new element with a specified key and value to the Map. If an element with the same key already exists, the element will be updated.

Parameters

ParameterType
keyK
valueT[]

Returns

this

Inherited from

ts
Map.set

sureGet()

ts
sureGet(k): T[];

Defined in: packages/framework/src/utility/Utility.ts:203

Parameters

ParameterType
kK

Returns

T[]


values()

ts
values(): MapIterator<T[]>;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts:158

Returns an iterable of values in the map

Returns

MapIterator<T[]>

Inherited from

ts
Map.values

groupBy()

ts
static groupBy<K, T>(items, keySelector): Map<K, T[]>;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.collection.d.ts:25

Groups members of an iterable according to the return value of the passed callback.

Type Parameters

Type Parameter
K
T

Parameters

ParameterTypeDescription
itemsIterable<T>An iterable.
keySelector(item, index) => KA callback which will be invoked for each item in items.

Returns

Map<K, T[]>

Inherited from

ts
Map.groupBy

基于 WTFPL 许可发布