return context.getRuntime().newSymbol(getMemoryIO().order().equals(ByteOrder.LITTLE_ENDIAN) ? "little" : "big");
}
@JRubyMethod(name = "order", required = 1)
public final IRubyObject order(ThreadContext context, IRubyObject byte_order) {
ByteOrder order = Util.parseByteOrder(context.getRuntime(), byte_order);
return new Struct(context.getRuntime(), getMetaClass(), layout,
getMemory().order(context.getRuntime(), order));
}