Kino.ETS (Kino v0.3.1) View Source
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.ETS{pid: pid()}
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.
This function is deprecated. Use Kino.ETS.new/1 instead.