module CA

a namespace for misc utilities related with CArray


carray/obsolete.rb

This file is part of Ruby/CArray extension library.

Copyright (C) 2005-2020 Hiroki Motoyoshi

Constants

TableMethods

Public Class Methods

struct(opt={}, &block) click to toggle source
# File lib/carray/struct.rb, line 275
def self.struct (opt={}, &block)
  return CAStruct::Builder.new(:struct, opt).define(&block)
end
union(opt={}, &block) click to toggle source
# File lib/carray/struct.rb, line 279
def self.union (opt={}, &block)
  return CAStruct::Builder.new(:union, opt).define(&block)
end