View Source Kino.ETS (Kino v0.14.2)

A kino for interactively viewing an ETS table.

Examples

tid = :ets.new(:users, [:set, :public])
Kino.ETS.new(tid)

Kino.ETS.new(:elixir_config)

Summary

Functions

Creates a new kino displaying the given ETS table.

Types

Functions

@spec new(:ets.tid()) :: t()

Creates a new kino displaying the given ETS table.

Note that private tables cannot be read by an arbitrary process, so the given table must have either public or protected access.