var ZeroSample …
type Sample …
func (s *Sample) Equal(o *Sample) bool { … }
func (s Sample) String() string { … }
func (s Sample) MarshalJSON() ([]byte, error) { … }
func (s *Sample) UnmarshalJSON(b []byte) error { … }
type Samples …
func (s Samples) Len() int { … }
func (s Samples) Less(i, j int) bool { … }
func (s Samples) Swap(i, j int) { … }
func (s Samples) Equal(o Samples) bool { … }
type SampleStream …
func (ss SampleStream) String() string { … }
func (ss SampleStream) MarshalJSON() ([]byte, error) { … }
func (ss *SampleStream) UnmarshalJSON(b []byte) error { … }
type Scalar …
func (s Scalar) String() string { … }
func (s Scalar) MarshalJSON() ([]byte, error) { … }
func (s *Scalar) UnmarshalJSON(b []byte) error { … }
type String …
func (s *String) String() string { … }
func (s String) MarshalJSON() ([]byte, error) { … }
func (s *String) UnmarshalJSON(b []byte) error { … }
type Vector …
func (vec Vector) String() string { … }
func (vec Vector) Len() int { … }
func (vec Vector) Swap(i, j int) { … }
func (vec Vector) Less(i, j int) bool { … }
func (vec Vector) Equal(o Vector) bool { … }
type Matrix …
func (m Matrix) Len() int { … }
func (m Matrix) Less(i, j int) bool { … }
func (m Matrix) Swap(i, j int) { … }
func (mat Matrix) String() string { … }