模块 RubyVM::RJIT::CType::BitField

公共类方法

new(width, offset) 点击切换源代码

@param width [Integer] @param offset [Integer]

# File ruby_vm/rjit/c_type.rb, line 86
def self.new(width, offset)
  CPointer.with_class_name('BitField', "#{offset}_#{width}") do
    CPointer::BitField.define(width, offset)
  end
end