% Enums
There is a new edition of the book and this is an old link.
Enums allow you to define a type by enumerating its possible values.
enum IpAddrKind {
V4,
V6,
}
Here are the relevant sections in the new and old books:
% Enums
There is a new edition of the book and this is an old link.
Enums allow you to define a type by enumerating its possible values.
enum IpAddrKind {
V4,
V6,
}
Here are the relevant sections in the new and old books: