本文整理汇总了TypeScript中@jonggrang/container.intmap类的典型用法代码示例。如果您正苦于以下问题:TypeScript intmap类的具体用法?TypeScript intmap怎么用?TypeScript intmap使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了intmap类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
export function merge<A>(m1: MMap<A>, m2: MMap<A>): MMap<A> {
return I.unionWithKey((_, a, b) => L.append(a, b), m1, m2);
}
示例2: isNothing
export function searchWith<A>(k: number, f: (_: A) => boolean, m: MMap<A>): Maybe<A> {
const ret = I.lookup(k, m);
return isNothing(ret) ? ret : L.find(f, ret.value);
}
示例3: chainMaybe
export function search<A>(k: number, m: MMap<A>): Maybe<A> {
return chainMaybe(I.lookup(k, m), L.head);
}
示例4: isNothing
export function lookup<A>(h: number, k: string, hm: HashMap<A>): Maybe<A> {
const ret = I.lookup(h, hm);
return isNothing(ret) ? ret : M.lookup(k, ret.value);
}
示例5:
export function insert<A>(h: number, k: string, v: A, m: HashMap<A>): HashMap<A> {
return I.insertWith(M.union as any, h, M.singleton(k, v), m);
}