effect-collections-datastructs

Installation
SKILL.md

Data Structures & Collections

Structural Equality

import { Data, Equal } from "effect"
const a = Data.struct({ id: 1, name: "A" })
const b = Data.struct({ id: 1, name: "A" })
Equal.equals(a, b) // true

Tuples & Arrays

const t = Data.tuple(1, "x")
const arr = Data.array([1,2,3])
Installs
26
GitHub Stars
5
First Seen
Jan 23, 2026
effect-collections-datastructs — mepuka/effect-ontology