bravo/etc
This module provides types or functions that don’t fit anywhere else.
Types
Access specifiers for ETS tables. Affects how other processes can interact with the table.
pub type Access {
Public
Protected
Private
}
Constructors
-
Public
Any process can read or write to the
USet
. -
Protected
Any process can read the
USet
. Only the owner process can write to it. -
Private
Only the parent process can read or write to the
USet
.