(builder *scode.Builder, slot uint32)
| 39 | } |
| 40 | |
| 41 | func (b *Bool) Serialize(builder *scode.Builder, slot uint32) { |
| 42 | builder.Append(super.EncodeBool(b.IsSet(slot))) |
| 43 | } |
| 44 | |
| 45 | func Or(a, b *Bool) *Bool { |
| 46 | return NewBool(bitvec.Or(a.Bits, b.Bits)) |
nothing calls this directly
no test coverage detected