What is ts-map?
it is a Map structure like ES6 Map. Map is similar to the object, but also a set of key-value pairs, but the "key" range is not limited to strings, various types of values (including objects) can be used as a key.
Installation
npm install ts-map
Usage
use in typescript file
import TsMap from 'ts-map'
const map = new TsMap()
const k1: number = 1
const k2: number[] = [2]
const k3: boolean = true
map.set(1, "hello")
map.set(k2, "ts").set(k3, "map")
map.get(1)
map.get(k2)
map.size
map.keys()
map.values()
map.forEach((value, key, map) => {
console.log(key, ':', value)
})
Getting started
Constructor with parameter
You can pass in the default parameters in the constructor:
const map = new TsMap([
[1, "ok"],
[2, "fail"]
])
console.log(map.get(1))
Class generic
support define generic for ts-map
interface Coder {
name: string
}
const map = new TsMap<number, Coder>([
[1, {name: 'lavyun'}]
])
map.set(2, {name: "tom"})
map.set(3, "jack")
If you do not define generics, but in the constructor passed in the parameters, you also need follow the generic rules.If you do not use generics, you can set any type of key-value pairs for the map.
API
size: number
return the Map's size
const map = new TsMap<number, Coder>([
[1, {name: 'lavyun'}]
])
map.set(2, {name: "tom"})
map.size
set(k: K, v: V): TsMapInter<K, V>
set a key-value to Map, support chain called.
map.set(true, "1")
map.set(1, "hello").set(2, "world")
Notice: Only the reference to the same object, Map structure will be regarded as the same key.
const k = ["1"]
map.set(k, "hello")
map.get(k)
map.get(["1"])
If the same key is assigned multiple times, the following value will overwrite the previous value.
map.set(1, "111").set(1, "222")
map.get(1)
get(k: K): V | undefined
Return the value of the corresponding key,if dosn't include, return undefind.
map.set(1, "111")
map.get(1)
map.get(2)
has(k: K): boolean
Determine if a key is included.
map.set(1, "111")
map.has(1)
map.has(2)
delete(k: k): boolean
Delete all the corresponding keys and its value, if detele success, return true. else return false.
map.set(1, "111")
map.set(2, "222")
map.delete(1)
map.has(1)
mao.size
clear(): void
Delete all key-value from the Map.
map.set(1, "111")
map.set(2, "222")
map.size
map.clear()
map.size
keys(): K[]
return all Map's key.
map.set(1, 2)
map.set(true, false)
map.set(["1"], {name: 'lavyun'})
map.keys()
values(): V[]
return all Map's value.
map.set(1, 2)
map.set(true, false)
map.set(["1"], {name: 'lavyun'})
map.values()
entries(): Array<[K, V]>
return all Map's key-value.
map.set(1, 2)
map.set(true, false)
map.set(["1"], {name: 'lavyun'})
map.entries()
forEach(cb, context?: any): void
Traversal the Map.Accept two parameters, first is a callback, second is a optional context.
callback function accepts 3 optional params,first is value, second is key, last is the map.
map.set(1, "111").set(2. "222")
map.forEach((value, key, map) => {
console.log(key, '-', value)
})
You can pass the second param to set the callback's context
const person = {
name: 'lavyun'
}
map.set(1, "111").set(2. "222")
map.forEach((value, key, map) => {
console.log(key, '-', value, '-', this.name)
}, person)
Licence
MIT LICENCE