package jx

// Int encodes int.
func ( *Encoder) ( int) bool {
	return .comma() ||
		.w.Int()
}

// UInt encodes uint.
func ( *Encoder) ( uint) bool {
	return .comma() ||
		.w.UInt()
}

// UInt8 encodes uint8.
func ( *Encoder) ( uint8) bool {
	return .comma() ||
		.w.UInt8()
}

// Int8 encodes int8.
func ( *Encoder) ( int8) bool {
	return .comma() ||
		.w.Int8()
}