Documentation ¶
Index ¶
- type T2
- func (t *T2[V1, V2]) GobDecode(data []byte) error
- func (t *T2[V1, V2]) GobEncode() ([]byte, error)
- func (t *T2[V1, V2]) MarshalBinary() ([]byte, error)
- func (t T2[V1, V2]) MarshalJSON() ([]byte, error)
- func (t T2[V1, V2]) MarshalText() ([]byte, error)
- func (t *T2[V1, V2]) UnmarshalBinary(data []byte) error
- func (t *T2[V1, V2]) UnmarshalJSON(p []byte) error
- func (t *T2[V1, V2]) UnmarshalText(data []byte) error
- func (t T2[V1, V2]) Values() (V1, V2)
- type T3
- func (t *T3[V1, V2, V3]) GobDecode(data []byte) error
- func (t *T3[V1, V2, V3]) GobEncode() ([]byte, error)
- func (t *T3[V1, V2, V3]) MarshalBinary() ([]byte, error)
- func (t T3[V1, V2, V3]) MarshalJSON() ([]byte, error)
- func (t T3[V1, V2, V3]) MarshalText() ([]byte, error)
- func (t *T3[V1, V2, V3]) UnmarshalBinary(data []byte) error
- func (t *T3[V1, V2, V3]) UnmarshalJSON(p []byte) error
- func (t *T3[V1, V2, V3]) UnmarshalText(data []byte) error
- func (t T3[V1, V2, V3]) Values() (V1, V2, V3)
- type T4
- func (t *T4[V1, V2, V3, V4]) GobDecode(data []byte) error
- func (t *T4[V1, V2, V3, V4]) GobEncode() ([]byte, error)
- func (t *T4[V1, V2, V3, V4]) MarshalBinary() ([]byte, error)
- func (t T4[V1, V2, V3, V4]) MarshalJSON() ([]byte, error)
- func (t T4[V1, V2, V3, V4]) MarshalText() ([]byte, error)
- func (t *T4[V1, V2, V3, V4]) UnmarshalBinary(data []byte) error
- func (t *T4[V1, V2, V3, V4]) UnmarshalJSON(p []byte) error
- func (t *T4[V1, V2, V3, V4]) UnmarshalText(data []byte) error
- func (t T4[V1, V2, V3, V4]) Values() (V1, V2, V3, V4)
- type T5
- func (t *T5[V1, V2, V3, V4, V5]) GobDecode(data []byte) error
- func (t *T5[V1, V2, V3, V4, V5]) GobEncode() ([]byte, error)
- func (t *T5[V1, V2, V3, V4, V5]) MarshalBinary() ([]byte, error)
- func (t T5[V1, V2, V3, V4, V5]) MarshalJSON() ([]byte, error)
- func (t T5[V1, V2, V3, V4, V5]) MarshalText() ([]byte, error)
- func (t *T5[V1, V2, V3, V4, V5]) UnmarshalBinary(data []byte) error
- func (t *T5[V1, V2, V3, V4, V5]) UnmarshalJSON(p []byte) error
- func (t *T5[V1, V2, V3, V4, V5]) UnmarshalText(data []byte) error
- func (t T5[V1, V2, V3, V4, V5]) Values() (V1, V2, V3, V4, V5)
- type T6
- func (t *T6[V1, V2, V3, V4, V5, V6]) GobDecode(data []byte) error
- func (t *T6[V1, V2, V3, V4, V5, V6]) GobEncode() ([]byte, error)
- func (t *T6[V1, V2, V3, V4, V5, V6]) MarshalBinary() ([]byte, error)
- func (t T6[V1, V2, V3, V4, V5, V6]) MarshalJSON() ([]byte, error)
- func (t T6[V1, V2, V3, V4, V5, V6]) MarshalText() ([]byte, error)
- func (t *T6[V1, V2, V3, V4, V5, V6]) UnmarshalBinary(data []byte) error
- func (t *T6[V1, V2, V3, V4, V5, V6]) UnmarshalJSON(p []byte) error
- func (t *T6[V1, V2, V3, V4, V5, V6]) UnmarshalText(data []byte) error
- func (t T6[V1, V2, V3, V4, V5, V6]) Values() (V1, V2, V3, V4, V5, V6)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type T2 ¶
type T2[V1, V2 any] struct { V1 V1 V2 V2 }
func (*T2[V1, V2]) MarshalBinary ¶ added in v0.0.8
func (T2[V1, V2]) MarshalJSON ¶ added in v0.0.5
func (T2[V1, V2]) MarshalText ¶ added in v0.0.8
func (*T2[V1, V2]) UnmarshalBinary ¶ added in v0.0.8
func (*T2[V1, V2]) UnmarshalJSON ¶ added in v0.0.5
func (*T2[V1, V2]) UnmarshalText ¶ added in v0.0.8
type T3 ¶
type T3[V1, V2, V3 any] struct { V1 V1 V2 V2 V3 V3 }
func (*T3[V1, V2, V3]) MarshalBinary ¶ added in v0.0.8
func (T3[V1, V2, V3]) MarshalJSON ¶ added in v0.0.5
func (T3[V1, V2, V3]) MarshalText ¶ added in v0.0.8
func (*T3[V1, V2, V3]) UnmarshalBinary ¶ added in v0.0.8
func (*T3[V1, V2, V3]) UnmarshalJSON ¶ added in v0.0.5
func (*T3[V1, V2, V3]) UnmarshalText ¶ added in v0.0.8
type T4 ¶
type T4[V1, V2, V3, V4 any] struct { V1 V1 V2 V2 V3 V3 V4 V4 }
func (*T4[V1, V2, V3, V4]) MarshalBinary ¶ added in v0.0.8
func (T4[V1, V2, V3, V4]) MarshalJSON ¶ added in v0.0.5
func (T4[V1, V2, V3, V4]) MarshalText ¶ added in v0.0.8
func (*T4[V1, V2, V3, V4]) UnmarshalBinary ¶ added in v0.0.8
func (*T4[V1, V2, V3, V4]) UnmarshalJSON ¶ added in v0.0.5
func (*T4[V1, V2, V3, V4]) UnmarshalText ¶ added in v0.0.8
type T5 ¶
type T5[V1, V2, V3, V4, V5 any] struct { V1 V1 V2 V2 V3 V3 V4 V4 V5 V5 }
func (*T5[V1, V2, V3, V4, V5]) MarshalBinary ¶ added in v0.0.8
func (T5[V1, V2, V3, V4, V5]) MarshalJSON ¶ added in v0.0.5
func (T5[V1, V2, V3, V4, V5]) MarshalText ¶ added in v0.0.8
func (*T5[V1, V2, V3, V4, V5]) UnmarshalBinary ¶ added in v0.0.8
func (*T5[V1, V2, V3, V4, V5]) UnmarshalJSON ¶ added in v0.0.5
func (*T5[V1, V2, V3, V4, V5]) UnmarshalText ¶ added in v0.0.8
type T6 ¶
type T6[V1, V2, V3, V4, V5, V6 any] struct { V1 V1 V2 V2 V3 V3 V4 V4 V5 V5 V6 V6 }
func (*T6[V1, V2, V3, V4, V5, V6]) MarshalBinary ¶ added in v0.0.8
func (T6[V1, V2, V3, V4, V5, V6]) MarshalJSON ¶ added in v0.0.5
func (T6[V1, V2, V3, V4, V5, V6]) MarshalText ¶ added in v0.0.8
func (*T6[V1, V2, V3, V4, V5, V6]) UnmarshalBinary ¶ added in v0.0.8
func (*T6[V1, V2, V3, V4, V5, V6]) UnmarshalJSON ¶ added in v0.0.5
func (*T6[V1, V2, V3, V4, V5, V6]) UnmarshalText ¶ added in v0.0.8
Click to show internal directories.
Click to hide internal directories.