logicaffeine-compile 0.9.13

LOGOS compilation pipeline - codegen and interpreter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Core

Core types and algebraic structures for LOGOS programs.

## Definition

A Result of [T] and [E] is either:
    An Ok (value: T).
    An Err (error: E).

An Option of [T] is either:
    A Some (value: T).
    A None.

A List of [T] is a generic collection.

A Map of [K] and [V] is a generic collection.