Documentation
¶
Index ¶
- type Float
- func (float Float) Chan() <-chan float64
- func (float Float) Empty() bool
- func (float Float) Float() float64
- func (float Float) FloatDefault(defaultFloat float64) float64
- func (float Float) Map(op func(float64) float64) Float
- func (float Float) MarshalJSON() ([]byte, error)
- func (float Float) MarshalText() ([]byte, error)
- func (float Float) Ptr() *float64
- func (float Float) PutIfEmpty(value float64) Float
- func (float Float) Slice() []float64
- func (float Float) String() string
- func (float *Float) UnmarshalJSON(p []byte) error
- func (float *Float) UnmarshalText(p []byte) error
- type Int
- func (i Int) Chan() <-chan int
- func (i Int) Empty() bool
- func (i Int) Int() int
- func (i Int) IntDefault(defaultInt int) int
- func (i Int) Map(op func(int) int) Int
- func (i Int) MarshalJSON() ([]byte, error)
- func (i Int) MarshalText() ([]byte, error)
- func (i Int) Ptr() *int
- func (i Int) PutIfEmpty(value int) Int
- func (i Int) Slice() []int
- func (i Int) String() string
- func (i *Int) UnmarshalJSON(p []byte) error
- func (i *Int) UnmarshalText(p []byte) error
- type String
- func (str String) Chan() <-chan string
- func (str String) Empty() bool
- func (str String) Map(op func(string) string) String
- func (str String) MarshalJSON() ([]byte, error)
- func (str String) MarshalText() ([]byte, error)
- func (str String) Ptr() *string
- func (str String) PutIfEmpty(value string) String
- func (str String) Slice() []string
- func (str String) String() string
- func (str String) StringDefault(defaultString string) string
- func (str *String) UnmarshalJSON(p []byte) error
- func (str *String) UnmarshalText(p []byte) error
- type Time
- func (t Time) Chan() <-chan time.Time
- func (t Time) Empty() bool
- func (t Time) Map(op func(time.Time) time.Time) Time
- func (t Time) MarshalJSON() ([]byte, error)
- func (t Time) MarshalText() ([]byte, error)
- func (t Time) Ptr() *time.Time
- func (t Time) PutIfEmpty(value time.Time) Time
- func (t Time) Slice() []time.Time
- func (t Time) String() string
- func (t Time) Time() time.Time
- func (t Time) TimeDefault(defaultTime time.Time) time.Time
- func (t *Time) UnmarshalJSON(p []byte) error
- func (t *Time) UnmarshalText(p []byte) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Float ¶
type Float struct {
// contains filtered or unexported fields
}
func FloatValue ¶
func (Float) FloatDefault ¶
func (Float) MarshalJSON ¶
func (Float) MarshalText ¶ added in v0.0.2
func (Float) PutIfEmpty ¶
func (*Float) UnmarshalJSON ¶
func (*Float) UnmarshalText ¶ added in v0.0.2
type Int ¶
type Int struct {
// contains filtered or unexported fields
}
func (Int) IntDefault ¶
func (Int) MarshalJSON ¶
func (Int) MarshalText ¶ added in v0.0.2
func (Int) PutIfEmpty ¶
func (*Int) UnmarshalJSON ¶
func (*Int) UnmarshalText ¶ added in v0.0.2
type String ¶
type String struct {
// contains filtered or unexported fields
}
func (String) MarshalJSON ¶
func (String) MarshalText ¶ added in v0.0.2
func (String) PutIfEmpty ¶
func (String) StringDefault ¶
func (*String) UnmarshalJSON ¶
func (*String) UnmarshalText ¶ added in v0.0.2
type Time ¶ added in v0.0.2
type Time struct {
// contains filtered or unexported fields
}
func (Time) MarshalJSON ¶ added in v0.0.2
func (Time) MarshalText ¶ added in v0.0.2
func (Time) TimeDefault ¶ added in v0.0.2
func (*Time) UnmarshalJSON ¶ added in v0.0.2
func (*Time) UnmarshalText ¶ added in v0.0.2
Click to show internal directories.
Click to hide internal directories.