# File lib/more/facets/rbconfig.rb, line 44
  def self.byte_order
    if [0x12345678].pack("L") == "\x12\x34\x56\x78"
      :big
    else
      :little
    end
  end