sym Types

This document shows Go type definitions from the codebase.

Generated types:

Constants {#constants}

Source: sym/symbols.go

const AM = "≡"
const AS = "+"
const AT = "✦"
const AX = "⋈"
const BY = "⌬"
const DB = "⊔"
const I = "⍟"
const IS = "="
const IX = "⨳"
const OF = "∈"
const Prose = "▣"
const Pulse = "꩜"
const PulseClose = "❀"
const PulseOpen = "✿"
const SO = "⟶"

Collections

PaletteOrder {#paletteorder}

var PaletteOrder = []string{
	I,
	AM,
	IX,
	AX,
	BY,
	AT,
	SO,
}

CommandDescriptions {#commanddescriptions}

var CommandDescriptions = map[string]string{
	"am": "Configuration — System settings and state",
	"as": "Assert — Emit an attestation",
	"at": "Temporal — Time marker/moment",
	"ax": "Expand — Query and surface related context",
	"by": "Actor — Origin of action (creator/source/user)",
	"i": "Self — Your vantage point into QNTX",
	"is": "Identity — Subject/equivalence in attestations",
	"ix": "Ingest — Import external data",
	"of": "Membership — Element-of/belonging in attestations",
	"so": "Therefore — Consequent action/trigger",
}

CommandToSymbol {#commandtosymbol}

var CommandToSymbol = map[string]string{
	"am": AM,
	"as": AS,
	"at": AT,
	"ax": AX,
	"by": BY,
	"i": I,
	"is": IS,
	"ix": IX,
	"of": OF,
	"so": SO,
}

SymbolToCommand {#symboltocommand}

var SymbolToCommand = map[string]string{
	AM: "am",
	AS: "as",
	AT: "at",
	AX: "ax",
	BY: "by",
	I: "i",
	IS: "is",
	IX: "ix",
	OF: "of",
	SO: "so",
}