func ExampleAmf0Null_UnmarshalBinary() { b := []byte{0x05} // read from network var s protocol.Amf0Null if err := s.UnmarshalBinary(b); err != nil { return } fmt.Println("amf0 null") // Output: // amf0 null }
func ExampleAmf0Null_MarshalBinary() { s := protocol.Amf0Null{} var b []byte var err error if b, err = s.MarshalBinary(); err != nil { return } fmt.Println(len(b)) fmt.Println(b) // Output: // 1 // [5] }