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
-
PublicAny process can read or write to the
USet. -
ProtectedAny process can read the
USet. Only the owner process can write to it. -
PrivateOnly the parent process can read or write to the
USet.