Method: CTypes::Type#without_endian

Defined in:
lib/ctypes/type.rb

#without_endianObject



162
163
164
165
166
167
168
# File 'lib/ctypes/type.rb', line 162

def without_endian
  @without_endian ||= begin
    o = clone
    o.remove_instance_variable(:@endian)
    o
  end
end