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