fp ts graph:fp ts的不变功能图数据结构 源码
fp-ts-graph fp-ts的不变功能图数据结构。 该图是有向图和循环图。 后者的属性将来会更改为非周期性。 目前,我们不检查插入周期。 安装 npm install fp-ts git+https://github.com/no-day/fp-ts-graph TypeScript示例 定义类型 // examples/types.ts import { Graph } from "fp-ts-graph" ; // First, let's define some custom Id, Edge and Node type for our Graph export type MyId = number ; export type MyNode = { firstName : string ; lastName : string ; age : number } ; expor
文件列表
fp-ts-graph-main.zip
(预估有个11文件)
fp-ts-graph-main
graph.svg
3KB
package.json
605B
.github
workflows
build.yml
909B
src
index.ts
6KB
tsconfig.json
6KB
examples
暂无评论