import "github.com/apache/beam/sdks/go/pkg/beam/core/runtime/coderx"
Package coderx contains coders for primitive types that aren't included in the beam model.
coderx.shims.go doc.go float.go int.go string.go varint.go
var ( Uint32 *coder.CustomCoder Int32 *coder.CustomCoder Uint64 *coder.CustomCoder Int64 *coder.CustomCoder )
Fixed-sized custom coders for integers.
NewFloat returns a coder for the given float type. It uses the same encoding scheme as the gob package.
func NewString() (*coder.CustomCoder, error)
NewString returns a coder for the string type. It uses the native []byte to string conversion.
Only for custom coder test use.
NewVarIntZ returns a varint coder for the given integer type. It uses a zig-zag scheme, which is _different_ from the Beam standard coding scheme.
NewVarUintZ returns a uvarint coder for the given integer type. It uses a zig-zag scheme, which is _different_ from the Beam standard coding scheme.
Package coderx imports 10 packages (graph) and is imported by 2 packages. Updated 2020-06-19. Refresh now. Tools for package owners.