Programming Language

Nocter

A self-contained systems language built around simplicity, encapsulation, and foolproof design.

/development/std/set/storage.nct

storage.nct

//! Private Set representation over the shared associative table.

see ./index.nct

use /internal/table.Table

struct SetValue {}

struct Set<T> {
    table: Table<T, SetValue>
}