View Source Kino.ETS (Kino v0.10.0)
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
Link to this section Types
@type t() :: Kino.Table.t()
Link to this section Functions
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.