class RQRCodeCore::QRBitBuffer
def put(num, length)
Experimental RBS support (using type sampling data from the type_fusion
project).
def put: (Integer num, Integer length) -> Range
This signature was generated using 3 samples from 1 application.
def put(num, length) (0...length).each do |i| put_bit(((QRUtil.rszf(num, length - i - 1)) & 1) == 1) end end