mirror of
https://github.com/diamondburned/arikawa.git
synced 2024-11-01 12:34:28 +00:00
7 lines
338 B
Go
7 lines
338 B
Go
// Package option provides the ability to create omittable primitives.
|
|
// This is accomplished by pointerrizing common primitive types so that they may
|
|
// assume a nil value, which is considered as omitted by encoding/json.
|
|
// To generate pointerrized primitives, there are helper functions NewT() for
|
|
// each option type.
|
|
package option
|