Versions in this module Expand all Collapse all v5 v5.0.5 May 3, 2024 Changes in this version + type BinarySizer interface + BinarySize func() int + type CopyNewer interface + CopyNew func() *V + type Equatable interface + Equal func(*T) bool + type Map map[K]*T + func (m *Map[K, T]) MarshalBinary() (p []byte, err error) + func (m *Map[K, T]) ReadFrom(r io.Reader) (n int64, err error) + func (m *Map[K, T]) UnmarshalBinary(p []byte) (err error) + func (m *Map[K, T]) WriteTo(w io.Writer) (n int64, err error) + func (m Map[K, T]) BinarySize() (size int) + func (m Map[K, T]) CopyNew() *Map[K, T] + type Matrix [][]T + func (m *Matrix[T]) ReadFrom(r io.Reader) (n int64, err error) + func (m *Matrix[T]) UnmarshalBinary(p []byte) (err error) + func (m Matrix[T]) BinarySize() (size int) + func (m Matrix[T]) CopyNew() (mcpy Matrix[T]) + func (m Matrix[T]) Equal(other Matrix[T]) bool + func (m Matrix[T]) MarshalBinary() (p []byte, err error) + func (m Matrix[T]) WriteTo(w io.Writer) (n int64, err error) + type Vector []T + func (v *Vector[T]) ReadFrom(r io.Reader) (n int64, err error) + func (v *Vector[T]) UnmarshalBinary(p []byte) (err error) + func (v Vector[T]) BinarySize() (size int) + func (v Vector[T]) CopyNew() (vcpy Vector[T]) + func (v Vector[T]) Equal(other Vector[T]) (isEqual bool) + func (v Vector[T]) MarshalBinary() (p []byte, err error) + func (v Vector[T]) WriteTo(w io.Writer) (n int64, err error) Other modules containing this package github.com/baahl-nyu/lattigo/v6