github.com/tunabay/go-bitarray@v1.3.1/builder_internal_test.go (about)

     1  // Copyright (c) 2021 Hirotsuna Mizuno. All rights reserved.
     2  // Use of this source code is governed by the MIT license that can be found in
     3  // the LICENSE file.
     4  
     5  package bitarray
     6  
     7  // A calls the unexported append() method.
     8  func (b *Builder) A(buf []byte, off, nBits int, zf bool) {
     9  	b.append(buf, off, nBits, zf)
    10  }