github.com/webmafia/fast@v0.10.0/binary/stream_write_bool.go (about) 1 package binary 2 3 func (b *StreamWriter) WriteBool(v bool) error { 4 if v { 5 return b.WriteByte(1) 6 } 7 8 return b.WriteByte(0) 9 }