github.com/webmafia/fast@v0.10.0/binary/buffer_write_bool.go (about)

     1  package binary
     2  
     3  func (b *BufferWriter) WriteBool(v bool) error {
     4  	if v {
     5  		return b.WriteByte(1)
     6  	}
     7  
     8  	return b.WriteByte(0)
     9  }