View Source Kino.ETS (Kino v0.12.3)

A kino for interactively viewing an ETS table.

examples

Examples

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

Kino.ETS.new(:elixir_config)

Link to this section Summary

Functions

Creates a new kino displaying the given ETS table.

Link to this section Types

Link to this section 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.