View Source Kino.ETS (Kino v0.5.2)
A widget for interactively viewing an ETS table.
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
Specs
t() :: Kino.JS.Live.t()
Link to this section Functions
Specs
Starts a widget process representing 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.