# `Diffo.Ieee1164`

The ieee1164 knowledge graph, expressed as Cypher-style yarn and compiled
into Artefact form via `Diffo.Ieee1164.Parser`.

Each section of the yarn is both readable source and a callable function
returning a self-contained `%Artefact{}`. The title of each artefact is
derived from its section key; the description is a summary.

`ieee1164/0` pipelines all sections into the full combined artefact.
`yarn/0` returns the raw sections for inspection or other tooling.

# `character`

# `identity_under_resolution`

# `ieee1164`

The complete ieee1164 artefact — all sections combined progressively.
The same story the livebook tells, in compiled form.

# `is_x`

# `load`

Load a pre-compiled section artefact from `priv/diffo/ieee1164/<key>.bin`.

Run `mix ieee1164.compile` to produce the files. Raises if missing.

# `load_ieee1164`

Load the fully combined ieee1164 artefact from `priv/diffo/ieee1164/ieee1164.bin`.

# `logic_operations`

# `operations`

# `pairwise`

# `projections`

# `resolutions`

# `signals`

# `standard`

# `stream`

A stream of section artefacts in yarn order, parsed lazily.

Each element is a self-contained `%Artefact{}` for that section.

    Diffo.Ieee1164.stream() |> Enum.take(3)

# `stream_integrated`

A stream of progressively integrated artefacts, one section at a time.

The first element is `:standard` alone. Each subsequent element folds
the next section into the growing whole — the story as it is told.

    Diffo.Ieee1164.stream_integrated() |> Enum.each(&inspect/1)

# `strength`

# `synchronicity`

# `transitions`

# `values`

# `worlds`

# `yarn`

The raw Cypher-style yarn, in the order the story is told.

Each entry is `{title, [key: cypher_text]}` — the human sentence that names
the chapter, the section key, and the Cypher source itself.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
