Topology.Interior (topology v0.1.3)

Link to this section Summary

Functions

Returns a interior of the given set for topological space.

Link to this section Functions

Link to this function

closure_operator(m, arg)

Link to this function

interior_operator(m, arg)

Returns a interior of the given set for topological space.

examples

Examples

iex> topological_space =
...>  {
...>    MapSet.new([:a, :b, :c]),
...>    MapSet.new([
...>      MapSet.new([]),
...>      MapSet.new([:b]),
...>      MapSet.new([:a, :b]),
...>      MapSet.new([:a, :b, :c])
...>    ])
...>  }
iex> m = MapSet.new([:a, :b])
iex> Topology.Interior.interior_operator(m, topological_space)
MapSet.new([:a, :b])